Guest User

Untitled

a guest
Feb 20th, 2018
84
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.14 KB | None | 0 0
  1. >>> veri = "Monty Python"
  2. >>> print(veri)
  3. Monty Python
  4. >>> print(veri[3])
  5. t
  6. >>> print(veri[0:6])
  7. Monty
  8. >>> print(veri[::-1])
  9. nohtyP ytnoM
  10. >>>
Add Comment
Please, Sign In to add comment