functions
def messageGreeting(str1):
def addWelcome():
return "welcome "
return addWelcome()+str1
def user(user_name):
return user_name
print(messageGreeting(user("MD Irfan")))INFO
def messageGreeting(str1):
def addWelcome():
return "welcome "
return addWelcome()+str1
def user(user_name):
return user_name
print(messageGreeting(user("MD Irfan")))