Skip to content

Instantly share code, notes, and snippets.

@quantra-go-algo
Last active July 1, 2021 14:02
Show Gist options
  • Save quantra-go-algo/dbcf2d8aa0e712c35d1eb439b532c08f to your computer and use it in GitHub Desktop.
Save quantra-go-algo/dbcf2d8aa0e712c35d1eb439b532c08f to your computer and use it in GitHub Desktop.
x= 8
y= 4
# Addition of two operands
add = x+ y
print(add)
# Subtraction of two operands
sub = x-y
print (sub)
# Multiplication of two operands
multiplication = x*y
print (multiplication)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment