Created
August 24, 2022 12:21
-
-
Save ustropo/e06de2d3d0aa71dd82288f684c703553 to your computer and use it in GitHub Desktop.
This file contains 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
>>> x = 10 | |
>>> a = 'some string' | |
>>> class V: | |
... pass | |
... | |
>>> type(x) | |
<class 'int'> | |
>>> type(a) | |
<class 'str'> | |
>>> type(V) | |
<class 'type'> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment