1>>> print('What is your name?') # ask for their name
2>>> myName = input()
3>>> print('It is good to meet you, {}'.format(myName))
4What is your name?
5Al
6It is good to meet you, Al
7
1def foo():
2 """
3 This is a function docstring
4 You can also use:
5 ''' Function Docstring '''
6 """
7