This repository has been archived on 2025-10-25. You can view files and clone it, but cannot push or open issues or pull requests.
Files
python_it_top/Practica2/task_5_rpo254.py

8 lines
318 B
Python
Raw Normal View History

2025-09-11 18:33:59 +05:00
import random
text = [ "<<Life is what happens", "when", "you're busy making other plans>>'" ]
random_text_one = random.choice(text)
random_text_two = random.choice(text)
random_text_three = random.choice(text)
print("{}\n" " {}\n" " {}\n".format(random_text_one, random_text_two, random_text_three))