Testing

Copy below code


def table (num):
    print ("Hello World")
    print ("This is testing")

def sum(a, b):
    return (a + b)

a = int(input('Enter 1st number: '))
b = int(input('Enter 2nd number: '))

print(f'Sum of {a} and {b} is {sum(a, b)}')

Comments

Popular posts from this blog

Python chapter 3

Login Page design using Html and CSS only