From 8dcf7856ec4e5307702a9ccfca32148c2d666ef1 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Gamze=20K=C4=B1l=C4=B1n=C3=A7?= <149265010+gamzeklnc@users.noreply.github.com> Date: Mon, 5 Jan 2026 13:32:09 +0300 Subject: [PATCH] Add variable declarations for different types --- Week02/types_gamze_kilinc.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Week02/types_gamze_kilinc.py diff --git a/Week02/types_gamze_kilinc.py b/Week02/types_gamze_kilinc.py new file mode 100644 index 00000000..19bbe9cf --- /dev/null +++ b/Week02/types_gamze_kilinc.py @@ -0,0 +1,4 @@ +my_int = 10 +my_float = 3.14 +my_bool = True +my_complex = 2 + 3j