Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to use function in python

#plz suscribe my youtube channel --> https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A
#    Parameter of the function
#              |
def greetings(Name):
  #Content inside the function
  print("Hello",Name)
  print("How are you",Name)
print(greetings("Python devloper"))
#                     ^
#                     |
#             Argument of the function
 
PREVIOUS NEXT
Tagged: #function #python
ADD COMMENT
Topic
Name
2+2 =