Created
July 22, 2018 13:38
-
-
Save krishnaprajapat/6bf4c8a9d0b9a222a7badb41ef8f35da to your computer and use it in GitHub Desktop.
Python program to add two number
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=1.1; | |
b=3.1; | |
c=a+b; | |
print('sum of a&b is {0} '.format(c) | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment