Aug 21, 2024
def function_name():
function_name()
happy_birthday()
three times.def happy_birthday(name):
happy_birthday("Bro")
Happy Birthday to Bro
def happy_birthday(name, age):
f"{placeholder}"
Happy Birthday to {name}, you are {age} years old.
def add(x, y): return x + y
def create_name(first, last):
full_name = create_name("john", "doe")