I have def ted_fruit(fruit,fruit_quantity,fruit_cost).
Ted, the TA, wants to buy fruit from the grocery. Define a function named ted_fruit(fruit, fruit_quantity, fruit_cost) that takes in the name of the fruit, the number of the fruit Ted will buy and the cost of each fruit. The function will print out a sentence stating the fruit and the number of the fruit he purchased, and return the price of all the fruit with a 7% sales tax.
Examples:
ted_fruit("lemons", 20, 3) prints "Ted bought 20 lemons." and returns 64.2
ted_fruit("orange", 1, 0) prints "Ted bought 1 orange." and returns 0.0
ted_fruit("tomatoes", 3, 2.8) prints "Ted bought 3 tomatoes." and returns 8.988