python Write a function shampoo_instructions() with parameter num_cycles. If num_cycles is less than 1, print "Too few.". If more than 4, print "Too many.". Else, print "N : Lather and rinse." num_cycles times, where N is the cycle number, followed by "Done.". Sample output with input: 21 : Lather and rinse. 2 : Lather and rinse. Done.

C++ Programming: From Problem Analysis to Program Design
8th Edition
ISBN:9781337102087
Author:D. S. Malik
Publisher:D. S. Malik
Chapter8: Arrays And Strings
Section: Chapter Questions
Problem 19PE
icon
Related questions
icon
Concept explainers
Question

python

Write a function shampoo_instructions() with parameter num_cycles. If num_cycles is less than 1, print "Too few.". If more than 4, print "Too many.". Else, print "N : Lather and rinse." num_cycles times, where N is the cycle number, followed by "Done.".

Sample output with input: 21 : Lather and rinse. 2 : Lather and rinse. Done.

i keep getting this error

Hint: Define and use a loop variable.
2 def shampoo_instructions(user_cycles):
if user_cyles < 1:
print('Too few.')
elif user_cycles > 4:
print('Too many.')
3
4
5
6
7
else:
for i in range (1, user_cycles+1):
print (i, ': Lather and rinse.')
print('Done')
8
10
11
12 user_cycles = int(input())
13 shampoo_instructions (user_cycles)
Run
X Test aborted
Exited with return code 1.
Traceback (most recent call last):
File "main.py", line 13, in <module>
shampoo_instructions (user_cycles)
File "main.py", line 3, in shampoo_instructions
if user_cyles < 1:
NameError: name 'user_cyles' is not defined
Transcribed Image Text:Hint: Define and use a loop variable. 2 def shampoo_instructions(user_cycles): if user_cyles < 1: print('Too few.') elif user_cycles > 4: print('Too many.') 3 4 5 6 7 else: for i in range (1, user_cycles+1): print (i, ': Lather and rinse.') print('Done') 8 10 11 12 user_cycles = int(input()) 13 shampoo_instructions (user_cycles) Run X Test aborted Exited with return code 1. Traceback (most recent call last): File "main.py", line 13, in <module> shampoo_instructions (user_cycles) File "main.py", line 3, in shampoo_instructions if user_cyles < 1: NameError: name 'user_cyles' is not defined
Expert Solution
trending now

Trending now

This is a popular solution!

steps

Step by step

Solved in 3 steps with 2 images

Blurred answer
Knowledge Booster
Operators
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
C++ for Engineers and Scientists
C++ for Engineers and Scientists
Computer Science
ISBN:
9781133187844
Author:
Bronson, Gary J.
Publisher:
Course Technology Ptr