Sobes.tech
Middle+

Write a function that prints the string <Name> at an interview at <company>, by default, assume the company is Ozon, but you can create your own company.

sobes.tech AI

Answer from AI

Here's an example of a Python function that prints a string with a name and a company, where the default company is Ozon, but you can pass another:

def print_interview(name, company="Ozon"):
    print(f"{name} at the interview in {company}")

# Example usage
print_interview("Ivan")           # Ivan at the interview in Ozon
print_interview("Maria", "Yandex")  # Maria at the interview in Yandex
Write a function that prints the string <Name> at an… - sobes.tech