Advertisement
desislava_topuzakova

01. Read Text

Oct 10th, 2020
947
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.16 KB | None | 0 0
  1. text = input()
  2.  
  3. # спираме ако text == Stop
  4. # продължаваме text != Stop
  5.  
  6. while text != "Stop":
  7.     print(text)
  8.     text = input()
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement