Skip to content

Instantly share code, notes, and snippets.

@CharudattaManwatkar
Created April 4, 2021 07:37
Show Gist options
  • Save CharudattaManwatkar/66f7c926b836c08b1bf227531d035dcd to your computer and use it in GitHub Desktop.
Save CharudattaManwatkar/66f7c926b836c08b1bf227531d035dcd to your computer and use it in GitHub Desktop.
Integers can be written with the separator '_' to improve readability.
a = 3250
b = 67_543_423_778
print(type(a))
print(type(b))
print(type(a)==type(b))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment