Skip to content

Instantly share code, notes, and snippets.

@waseeld
Created May 14, 2020 22:58
Show Gist options
  • Save waseeld/d3c02ab8815fa0df6e9ceaf7abf3e913 to your computer and use it in GitHub Desktop.
Save waseeld/d3c02ab8815fa0df6e9ceaf7abf3e913 to your computer and use it in GitHub Desktop.
## practice in python ##
# get input
num1 = int(input("num1 = "))
num2 = int(input("num2 = "))
# +
print("+ = ", num1 + num2)
# -
print("- = {}".format(num1 - num2))
# *
print('* = ' + str(num1 * num2))
# /
print('/ = ', num1 / num2)
# ==
print('==?', num1 == num2 )
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment