27.1k views
5 votes
Python

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:
42 seconds
1.2. Your solution goes here3. 4. print-popcorn_time(71)

User Damiqib
by
4.5k points

1 Answer

4 votes

Answer:

HH

Step-by-step explanation:

User Kartik Arora
by
5.6k points