diff --git a/Week02/types_sinem_isk.py b/Week02/types_sinem_isk.py new file mode 100644 index 0000000..46b181d --- /dev/null +++ b/Week02/types_sinem_isk.py @@ -0,0 +1,8 @@ +my_int = 5 +my_float = 5.0 +my_bool = True +my_complex = 5j + 3 +print(f"my_int = {my_int} (type: {type(my_int).__name__})") +print(f"my_float = {my_float} (type: {type(my_float).__name__})") +print(f"my_bool = {my_bool} (type: {type(my_bool).__name__})") +print(f"my_complex = {my_complex} (type: {type(my_complex).__name__})")n