function with argument
def hello(person):
print("happy birthday")
print("happy birthday!!!")
print("happy birthday "+person+"\n")
print("may god bless u")
hello('sourabh')
print("happy birthday")
print("happy birthday!!!")
print("happy birthday "+person+"\n")
print("may god bless u")
hello('sourabh')
Comments
Post a Comment