Created
June 30, 2021 03:51
-
-
Save soumyadeepdutta/e0856eef55f2116cbdd435899aa856ec 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
| a = 1 | |
| print(type(a)) # prints <class 'int'> | |
| a = "The Curious Programmer" # re-assigning | |
| print(type(a)) # prints <class 'str'> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment