diff --git a/Week02/types_yavuzselim_sahin.py b/Week02/types_yavuzselim_sahin.py new file mode 100644 index 0000000..a6bb8db --- /dev/null +++ b/Week02/types_yavuzselim_sahin.py @@ -0,0 +1,11 @@ +# integer variable +my_int = 45 + +# float variable +my_float = 4.5 + +# boolean variable +my_bool = True + +# complex variable +my_complex = 4 + 5j \ No newline at end of file