Created
May 14, 2020 22:58
-
-
Save waseeld/d3c02ab8815fa0df6e9ceaf7abf3e913 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
## 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