Advertisement
desislava_topuzakova

05. Character Sequence

Oct 3rd, 2020
866
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. # позиции  в тескта -> 0 до последна
  2. text = input()
  3. for position in range (0, len(text)):
  4.     print(text[position])
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement