Middle
Write a function that prints the string <Name> at an interview in <company>, by default assuming the company is Ozon, but you can create your own company.
sobes.tech AI
Answer from AI
python def print_interview(name, company="Ozon"): print(f"{name} at the interview at {company}")
Example usage
print_interview("Ivan") # Ivan at the interview at Ozon print_interview("Maria", "Yandex") # Maria at the interview at Yandex