Skip to content

Instantly share code, notes, and snippets.

@peroon
Last active March 29, 2017 08:51
Show Gist options
  • Select an option

  • Save peroon/3184ad825a9afbe44c089e773b6ec3e7 to your computer and use it in GitHub Desktop.

Select an option

Save peroon/3184ad825a9afbe44c089e773b6ec3e7 to your computer and use it in GitHub Desktop.
floating point division, integer division
print(100 / 3) # 33.333333
print(100 // 3) # 33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment