Skip to content

Instantly share code, notes, and snippets.

@ustropo
Created August 24, 2022 12:21
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ustropo/e06de2d3d0aa71dd82288f684c703553 to your computer and use it in GitHub Desktop.
Save ustropo/e06de2d3d0aa71dd82288f684c703553 to your computer and use it in GitHub Desktop.
>>> 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