From 29e8f1a7efcb39e1dc3d566dfa06b08017ccc122 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Mehmet=20Balc=C4=B1?= <148548201+MehmetxBalci@users.noreply.github.com> Date: Mon, 2 Mar 2026 16:47:21 +0300 Subject: [PATCH] Add variable declarations for different data types --- Week02/types_mehmet_balci.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Week02/types_mehmet_balci.py diff --git a/Week02/types_mehmet_balci.py b/Week02/types_mehmet_balci.py new file mode 100644 index 00000000..8088f377 --- /dev/null +++ b/Week02/types_mehmet_balci.py @@ -0,0 +1,4 @@ +my_int = 42 +my_float = 43.80 +my_bool = True +my_complex = 4 + 2j