Skip to content

Instantly share code, notes, and snippets.

@soumyadeepdutta
Created June 30, 2021 03:51
Show Gist options
  • Save soumyadeepdutta/e0856eef55f2116cbdd435899aa856ec to your computer and use it in GitHub Desktop.
Save soumyadeepdutta/e0856eef55f2116cbdd435899aa856ec to your computer and use it in GitHub Desktop.
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