Programming-Challenges/05 Extend Basic Function/exercise-02.py

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.")