From 99e26dffe91abef0ba4f4a7ef848978f03f1baee Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Heval=20S=C3=B6=C4=9F=C3=BCt?= <66115650+hevalsogut@users.noreply.github.com> Date: Fri, 3 Oct 2025 14:14:01 +0300 Subject: [PATCH] Add boolean and complex number variables --- Week02/types_heval_sogut.py | 4 ++++ 1 file changed, 4 insertions(+) create mode 100644 Week02/types_heval_sogut.py diff --git a/Week02/types_heval_sogut.py b/Week02/types_heval_sogut.py new file mode 100644 index 00000000..20fbf042 --- /dev/null +++ b/Week02/types_heval_sogut.py @@ -0,0 +1,4 @@ +my_int = 21 +my_float = 3.4 +my_bool = True +my_complex = 15 + 4j