Skip to content

Instantly share code, notes, and snippets.

@HectorTorres
Created April 14, 2020 18:42
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 HectorTorres/eb236807b6b3f0f0e264fac15366858c to your computer and use it in GitHub Desktop.
Save HectorTorres/eb236807b6b3f0f0e264fac15366858c to your computer and use it in GitHub Desktop.
x = 6
y = 2
print("suma")
print(x + y)
print("resta")
print(x - y)
print("multiplicación")
print(x * y)
print("división")
print(x / y)
print("módulo")
print(x % y)
print("exponenciación")
print(x ** y)
print("floor division")
print(x // y)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment