diff --git a/004/__pycache__/my_module.cpython-312.pyc b/004/__pycache__/my_module.cpython-312.pyc new file mode 100644 index 0000000..49b7fa2 Binary files /dev/null and b/004/__pycache__/my_module.cpython-312.pyc differ diff --git a/004/my_module.py b/004/my_module.py new file mode 100644 index 0000000..79b13b4 --- /dev/null +++ b/004/my_module.py @@ -0,0 +1 @@ +my_favourite_number = 3.1415 \ No newline at end of file diff --git a/004/task.py b/004/task.py new file mode 100644 index 0000000..def6fd8 --- /dev/null +++ b/004/task.py @@ -0,0 +1,8 @@ +import random + +rand = random.randint(1, 2) + +if rand == 1: + print("Heads") +else: + print("Tails")