Using the variable fruit = "strawberry"
print the following:
Best fruit is: strawberry
Yes, strawberry. Only strawberry
Hello, my name is Mr. Strawberry
fruit = '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+