Define function print_popcorn_time() with parameter bag_ounces. If bag_ounces is less than 3, print "Too small". If greater than 10, print "Too large". Otherwise, compute and print 6 * bag_ounces followed by "seconds". End with a newline. Example output for bag_ounces = 7

Respuesta :

Answer:

Following are the program can be defined as follows:

def print_popcorn_time(bag_ounces):#defining a method print_popcorn_time  

#defining a conditional statement  

   if bag_ounces < 3: #check value if bag_ounces is less then 3

       print("Too small") #print message

   elif bag_ounces > 10: # check another condition that bag_ounces is greater then 10

       print("Tool large") #print message  

   else: # else part

       bag_ounces = bag_ounces * 6 # multiply the bag_ounces value by 6  

       print(bag_ounces,"second") #print message

print_popcorn_time(2) # method calling

Output:

Too small

Explanation:

In the above program, a method "print_popcorn_time" is declared, which accepts a parameter, that is  "bag_ounces", inside the method, a conditional statement is used, which can be described as follows:

  • In the condition statement first, if block is used, that check variable "bag_ounces" value is less then 3, if this condition is true, it will print a message, that is "Too small", otherwise it will go to elif block.
  • In this block, it will check the variable "bag_ounces" value is greater then 10, if this condition is true, it will print a message, that is "Too large".
  • If both the above conditions are false so, it will go to else block, in this block variable "bag_ounces" value is multiplied by 6, and prints its value in seconds.