diff --git a/app/main.py b/app/main.py new file mode 100644 index 0000000..823c10e --- /dev/null +++ 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