Created
February 6, 2019 03:14
-
-
Save Ventsislav-Yordanov/a2141b5acc0b5c4c0e16b12b16e68b5d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
my_tuple = () | |
my_tuple2 = tuple() | |
print(type(my_tuple)) | |
print(type(my_tuple2)) | |
print() | |
print(my_tuple) | |
print(my_tuple2) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment