Functions
def func_name():
print('Tis but a scratch')
print("A scratch? Your arm's off!")
func_name()def do_fart(where):
print('I fart in your ' + where)
do_fart('general direction') # -> I fart in your general directiondef intro(name, title, quest):
print(f'It is {name} - {title}. My quest is {quest}.')
intro('Sir Arthur', 'King of the Britons', 'to seek the Holy Grail')
# -> It is Sir Arthur - King of the Britons. My quest is to seek the Holy Grail.def divide(dividend, divisor):
print(dividend / divisor)
divide(dividend=42, divisor=2) # -> 21.0Last updated