Files
courses/py3interm/EXAMPLES/default_parameters.py
T
2025-05-20 11:57:43 -04:00

16 lines
352 B
Python

#!/usr/bin/env python
def spam(greeting, whom='world'): # <1>
print("{}, {}".format(greeting, whom))
spam("Hello", "Mom") # <2>
spam("Hello") # <3>
print()
def ham(*, file_name, file_format='txt'): # <4>
print("Processing {} as {}".format(file_name, file_format))
ham(file_name='eggs') # <5>
ham(file_name='toast', file_format='csv')