Добавление 2 дз

This commit is contained in:
2025-09-11 18:33:59 +05:00
parent 0ff94792ec
commit 739a99dcf0
5 changed files with 66 additions and 0 deletions

View File

@@ -0,0 +1,7 @@
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))