Python - Week 2
Week 2
Python Functions
Python Functions and Lambda
# Declaring Function
# def function_name(parameter):
# code
def first_func(w):
print("hello, ", w)
word = "Goodboy"
# Call
first_func(word)
# Return
def return_func(w1):
value = "hello...
developmentblog.hashnode.dev8 min read