Last active
October 10, 2021 08:54
-
-
Save pratik-choudhari/ab8550b2bccff3d34e825524ebadd7e8 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
| number: str = "1" | |
| number = 2 | |
| number += 1 | |
| print(number) # prints 3 | |
| sequence: list = ["foo", "bar"] | |
| sequence = set() | |
| print(type(sequence)) # prints <class 'set'> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment