Slice a string : Slice : String PYTHON TUTORIALS


PYTHON TUTORIALS » String » Slice »

 

Slice a string


pystr = 'Python'
iscool = 'is cool!'
print pystr[0]
print pystr[2:5]
print iscool[:2]
print iscool[3:]
print iscool[-1]



Leave a Comment / Note


 
Verification is used to prevent unwanted posts (spam). .


PYTHON TUTORIALS

 Navioo String
» Slice