From b0e4d2ac32bd16ccac9474fc8e3d27f3a33ac704 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Loureiro?= Date: Sat, 7 Feb 2026 12:19:26 +0000 Subject: [PATCH 1/2] added main.py to test first commit --- app/main.py | 0 1 file changed, 0 insertions(+), 0 deletions(-) create mode 100644 app/main.py diff --git a/app/main.py b/app/main.py new file mode 100644 index 0000000..e69de29 From bd43bf44e5f897ee99f3e37d258f54d3e13b1fc6 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9=20Loureiro?= Date: Sat, 7 Feb 2026 12:27:24 +0000 Subject: [PATCH 2/2] edited app/main.py --- app/main.py | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) diff --git a/app/main.py b/app/main.py index e69de29..823c10e 100644 --- a/app/main.py +++ b/app/main.py @@ -0,0 +1,19 @@ +lucky_number = 777 +pi = 3.14 +one_is_a_prime_number = False +name = "Richard" +my_favourite_films = [ + "Shawshank Redemption", + "The Lord of the Rings: The Return of the King", + "Pulp Fiction", + "The Good, the Bad and the Ugly", + "The Matrix" +] +profile_info = ("michel", "michel@gmail.com", "12345678") +marks = { + "John": 4, + "Sergio": 3 +} +collection_of_coins = {1, 2, 25} + +# write your code here \ No newline at end of file