Using the variable fruit = "strawberry" print the following:
Best fruit is: strawberryYes, strawberry. Only strawberryHello, my name is Mr. Strawberryfruit = 'strawberry'
print(f'Best fruit is: {fruit}')print(f'Yes, {fruit}. Only {fruit}')print(f'Hello, my name is Mr. {fruit.capitalize()}')print(f'{fruit = }')# Supported only using Python 3.8+