Created
May 21, 2020 13:20
-
-
Save ChaitanyaBaweja/b1647922b34a4c8a24d32dad4457db15 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
a = float('inf') | |
print('Addition : ',a + 10) | |
print('Subtraction : ',a - 10) | |
print('Multiplication : ',a * 10) | |
print('Division : ',a / 10) | |
print('\nMultiplication by Zero: ',a * 0) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment