From 9e56bb175e3789b8233b21da561934f5eace5205 Mon Sep 17 00:00:00 2001 From: Tanguy Deleplanque Date: Wed, 11 Jun 2025 22:33:44 +0200 Subject: [PATCH] day 4 WIP - testing gitea repo --- 004/__pycache__/my_module.cpython-312.pyc | Bin 0 -> 193 bytes 004/my_module.py | 1 + 004/task.py | 8 ++++++++ 3 files changed, 9 insertions(+) create mode 100644 004/__pycache__/my_module.cpython-312.pyc create mode 100644 004/my_module.py create mode 100644 004/task.py diff --git a/004/__pycache__/my_module.cpython-312.pyc b/004/__pycache__/my_module.cpython-312.pyc new file mode 100644 index 0000000000000000000000000000000000000000..49b7fa2d5c9f419f90284140fe28bb4073cae481 GIT binary patch literal 193 zcmX@j%ge<81osO)Gh~4DV-N=h7@>^M96-i&h7^Vr3#mgScgWtODI=auFrr53GZ_zcqd%UVCQIJKx)za%j)y|hw4JijQrxF9h(RllIJ zBqKi$NW~}R=a(cW<`(E17?|h-jmphWDa}dME2#X%VFO{?6|n)$0y(9a8%TU$W@Kc% OAtrN?LAZzo$Oi!1nl&c? literal 0 HcmV?d00001 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")