Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- #pyhton srings
- """python string"""# thi is comment sesion part
- x="HELLOW "
- y='hellow'
- z="sabbir , ahmed"
- print (x[0:6])#array size
- print(x.islower())#if the string is really lower then it will be print true or not.
- print(y.islower())#same case
- print(y.strip())#fulfil dispaly
- print(x.replace("H", "J"))
- print(z.split(","))
- print(x *10)
Advertisement
Add Comment
Please, Sign In to add comment