Print a sentence joining the fruit and ripeness variable. Print any sentence that uses this variables (fruit and ripeness)
For example: "That lemon is rotten" and I can not eat it
Implement this exercise using the Python's F-string literal
fruit = "lemon"
ripeness = "rotten"
print(f"That {fruit} is {ripeness}")
Comments
Leave a comment