30-Days-Of-Python/mypackage/greet.py
2019-12-10 21:42:10 +02:00

3 lines
114 B
Python

def greet_person(firstname, lastname):
return f'{firstname} {lastname}, welcome to 30DaysOfPython Challenge!'