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. Remember that print() automatically adds a newline. Sample output with input: 742 seconds   ''' Your solution goes here ''' user_ounces = int(input()) print_popcorn_time(user_ounces)

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter15: Recursion
Section: Chapter Questions
Problem 8SA
icon
Related questions
Question
PYTHON CHALLENGE ACTIVITY
6.7.2: Function with branch: Popcorn.
 
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. Remember that print() automatically adds a newline.

Sample output with input: 742 seconds
 


''' Your solution goes here '''

user_ounces = int(input())
print_popcorn_time(user_ounces)

CHALLENGE 6.7.2: Function with branch: Popcorn.
ACTIVITY
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. Remember that print()
automatically adds a newline.
Sample output with input: 7
42 seconds
391908.2626244.qx3zqy7
1
2
Your solution goes here
3
4 user_ounces = int(input())
5 print_popcorn_time(user_ounces)
1 test
passed
All tests
passed
Transcribed Image Text:CHALLENGE 6.7.2: Function with branch: Popcorn. ACTIVITY 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. Remember that print() automatically adds a newline. Sample output with input: 7 42 seconds 391908.2626244.qx3zqy7 1 2 Your solution goes here 3 4 user_ounces = int(input()) 5 print_popcorn_time(user_ounces) 1 test passed All tests passed
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 4 steps with 4 images

Blurred answer
Knowledge Booster
Declaring and Defining the Function
Learn more about
Need a deep-dive on the concept behind this application? Look no further. Learn more about this topic, computer-science and related others by exploring similar questions and additional content below.
Similar questions
  • SEE MORE QUESTIONS
Recommended textbooks for you
C++ Programming: From Problem Analysis to Program…
C++ Programming: From Problem Analysis to Program…
Computer Science
ISBN:
9781337102087
Author:
D. S. Malik
Publisher:
Cengage Learning