From 7f1c64ed10330e3c29c2c1233023fc981408bb35 Mon Sep 17 00:00:00 2001 From: Adam Jurkiewicz Pythonista Local Date: Mon, 15 Dec 2025 12:00:09 +0100 Subject: [PATCH] 4 --- dzien_01/skrypt_04.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 dzien_01/skrypt_04.py diff --git a/dzien_01/skrypt_04.py b/dzien_01/skrypt_04.py new file mode 100644 index 0000000..1232af0 --- /dev/null +++ b/dzien_01/skrypt_04.py @@ -0,0 +1,6 @@ +imie = 'Adam' +rok_urodzenia = 1974 +aktualny_rok = 2025 +wiek = aktualny_rok - rok_urodzenia +print(f"Hej - {imie} - ja jestem Python. Twój rok urodzenia to {rok_urodzenia}") +print(f"W roku {aktualny_rok} masz lat {wiek}") \ No newline at end of file