Question: Jump to level 1 A fruit is read from input into fruit _ input. String shopping _ list is output, followed by fruit _ input.

Jump to level 1
A fruit is read from input into fruit_input. String shopping_list is output, followed by fruit_input. Modify shopping_list so that each fruit in shopping_list is separated by a tab ((??t), and shopping_list ends with a tab.
Ex: If the input is plums, then the output is:
grapes raspberries lemons blackberries apples plums
fruit_input = input ()
shopping_list =|'grapes raspberries lemons blackberries apples'
print(shopping_list, end='')
print(fruit_input)
 Jump to level 1 A fruit is read from input into

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!