What does the following code print?def sandwich(bread, meat,…
What does the following code print?def sandwich(bread, meat, *args): print(meat, ‘on’, bread, end=’ ‘) if len(args) > 0: print(‘with’, end=’ ‘) for extra in args: print(extra, end=’ ‘) sandwich(‘rye bread’, ‘salami’, ‘mayo’, ‘lettuce’)