DevJourney
Home
/
Python
/
VIT
/
sem-1
/
ex-03
/
2nd.py
Python/VIT/sem-1/ex-03/2nd.py
s=
"programming_in_python"
print
(s[-
1
:])
print
(s[-
21
:])
print
(s[-
17
:-
7
])
print
(s[
1
:
11
])
View on GitHub