5 lines
68 B
Text
5 lines
68 B
Text
|
|
test = "This thing"
|
||
|
|
print test[1:]
|
||
|
|
print test[:-1]
|
||
|
|
print test[1:-1]
|