Pages

Simple Python Program to find Biggest number




a=int(input('Enter value for a :'))
b=int(input('Enter value for b :'))

op=str(input('Enter the operator :'))
if op in ["'addition","+", "sum"]:
    result=a+b
    print('Result is: %d' %result)
else:
    print('Invalid operation')

Simple Python Program to find Biggest number




a=int(input('Enter value for a :'))
b=int(input('Enter value for b :'))

op=str(input('Enter the operator :'))
if op in ["'addition","+", "sum"]:
    result=a+b
    print('Result is: %d' %result)
else:
    print('Invalid operation')

Featured post

Snowflake - Creating warehouse in Snowflake

Creating warehouse Login to Snowflake and click on warehouse and click on Create fill the necessary details and click Finish We can also c...