0
Custom fountions
Please help me, i don't understand custom fountions at all,please help me
2 odpowiedzi
+ 1
your post seems to be incomplete. it should include:
> the programming language (to be placed in tags)
> if your post is related to a sololearn tutorial, we need to know the name of it, also the module and lesson /exercise name.
+ 5
Utibe Amos please clarify as to where you are having trouble
def greet(n):
print("Hello from a function and your input name is ", n)
print("Have a great day")
name = input()
#function call
greet(name)
In the above example greet() is the function being called and the value of name is being passed into the function as n