mirror of
https://github.com/Asabeneh/30-Days-Of-Python.git
synced 2026-06-06 21:09:15 +08:00
3 lines
114 B
Python
3 lines
114 B
Python
def greet_person(firstname, lastname):
|
|
return f'{firstname} {lastname}, welcome to 30DaysOfPython Challenge!'
|