Skip to content

Instantly share code, notes, and snippets.

@piyush2896
Created October 22, 2018 17:33
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 piyush2896/07a922dbe0dfade678022e568017ead0 to your computer and use it in GitHub Desktop.
Save piyush2896/07a922dbe0dfade678022e568017ead0 to your computer and use it in GitHub Desktop.
a = 10
b = 5
print(a + b)
print(a - b)
print(a * b)
print(a / b)
print(a // b)
print(a % b)
a = 10
b = 5
print(a > b)
print(a == b)
print(a >= b)
print(a != b)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment