Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.11 KB | None | 0 0
  1. s = "Hello Python!"
  2.  
  3. print(s[-1])
  4. # output : !
  5.  
  6. print(s[-13])
  7. # output : H
  8.  
  9. print(s[6] == s[-7])
  10. # output : True
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement