5 lines
171 B
Python
5 lines
171 B
Python
def thanks(inp):
|
|
""" print a string and follow it by 'You're welcome' """
|
|
print(inp + " You're welcome")
|
|
|
|
thanks("There are only 10 types of people in the world.") |