Quick actions

cmd+k|ctrl+k

Navigation

Languages

functions

Snippet info

Language

Python

Visibility

public

Author

mdirfan19962

Created

2020-06-15T01:35:17Z

Updated

2020-06-15T01:35:17Z

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