Files
python_bootcamp/004/task.py
2025-06-11 22:33:44 +02:00

9 lines
102 B
Python

import random
rand = random.randint(1, 2)
if rand == 1:
print("Heads")
else:
print("Tails")