def Std(name): #This is the required argument to the function fun message = "Hello : "+name; return message; Stdname = input("Enter the name : ") print(Std(Stdname))