2024-08-02: 2. Define Function
Another piece code when learning function
# Review:
# Create a function called greet().
def greet(name, location):
# Write 3 print statements inside the function.
print(f"Hello {name}!")
print(f"Is {location} far?")
print(f"Isn't the ...
yonny.yoning.com1 min read