Python-exercises/Function_input.py

9 lines
No EOL
144 B
Python

def greet(name, person1):
print(f"the 1st print {name} ")
print(f"the 1st print {person1}")
greet(name="richard", person1="Dennis")