Question: In python please. String input _ item and integer food _ stock are read from input. Write a loop that iterates while food _ stock

In python please.
String input_item and integer food_stock are read from input. Write a loop that iterates while food_stock is between 25 and 50,
both exclusive. In each iteration of the loop:
Read string input_item from input.
Read integer food_stock from input.
Click here for example
Ex: If the input is:
Citron
Yam
3
Coconut
2
then the output is:
Coconut: is flagged!
input_item = input ()
food_stock = int(input())
4
6 print(f'{input_item}: is flagged!')

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!