Skip to content

Instantly share code, notes, and snippets.

@Allwin12
Created January 21, 2020 05:53
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 Allwin12/38b3af61f544ba1109ead6381bd53946 to your computer and use it in GitHub Desktop.
Save Allwin12/38b3af61f544ba1109ead6381bd53946 to your computer and use it in GitHub Desktop.
# / operator
a=10/3
print("Value of a is ",a)
# // operator
b=10//3
print("Value of b is ",b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment