solve 5.7.1
This commit is contained in:
parent
49f7781e86
commit
6690d9cdf4
|
@ -0,0 +1,12 @@
|
||||||
|
|
||||||
|
def print_popcorn_time(bag_ounces):
|
||||||
|
if bag_ounces < 3:
|
||||||
|
print('Too small') # This should be returned instead.
|
||||||
|
elif bag_ounces > 10:
|
||||||
|
print('Too large') # This should be returned instead.
|
||||||
|
else:
|
||||||
|
print('{0} seconds'.format(6 * bag_ounces)) # This should be returned instead.
|
||||||
|
|
||||||
|
|
||||||
|
user_ounces = int(input())
|
||||||
|
print_popcorn_time(user_ounces)
|
Loading…
Reference in New Issue