paster442

Untitled

Dec 17th, 2021 (edited)
71
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.24 KB | None | 0 0
  1. from random import choice
  2.  
  3. a = ["саня", "с", "днём" "рождения"]
  4.  
  5. b = ""
  6. i = 1
  7. while b != "саня с днём рождения":
  8.     b = f"{choice(a)} {choice(a)} {choice(a)} {choice(a)}"
  9.     print(str(i) + ") " + b)
  10.     i += 1
Add Comment
Please, Sign In to add comment