4 lines
76 B
Python
4 lines
76 B
Python
|
string1 ='Good Morning PePig'
|
||
|
print(string1[5:12:] )
|
||
|
print(string1[:-6:-1])
|