Created
February 28, 2021 15:46
-
-
Save cristinelpopescu/d8ba9ea9e09b639480eb3395bdb35053 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
#some simple math | |
A = float(input('enter A number: ')) | |
B = float(input('enter B number: ')) | |
#addition | |
#print( A + B) | |
#substraction | |
#print( A - B) | |
#divide | |
#print( A / B) | |
#multiply | |
#print( A * B) | |
#A power B | |
#print( A ** B) | |
#division without rest | |
#print(A // B) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment