From 4e099d12bcd3606519566f05a37c339752c1ee93 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?B=C3=BC=C5=9Fra=20Pehlivanlar?= Date: Mon, 22 Dec 2025 23:03:29 +0300 Subject: [PATCH] Add Week 02 homework --- Week02/types_busra_pehlivanlar.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Week02/types_busra_pehlivanlar.py diff --git a/Week02/types_busra_pehlivanlar.py b/Week02/types_busra_pehlivanlar.py new file mode 100644 index 00000000..4d572a94 --- /dev/null +++ b/Week02/types_busra_pehlivanlar.py @@ -0,0 +1,4 @@ +my_int = 10 +my_float = 10.5 +my_bool = True +my_complex = 1 + 2j