Question: How do I remove the extra white space in my output? Write a function print_shampoo_instructions() with parameter num_cycles. If num_cycles is less than 1, print

How do I remove the extra white space in my output? WriteHow do I remove the extra white space in my output?

Write a function print_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: 2 1: Lather and rinse. 2: Lather and rinse. Done. Hint: Define and use a loop variable. Code writing challenge activity demo \( \begin{array}{lc}1 & \\ 2 & \text { def print_shampoo_instructions(num_cycles): } \\ 3 & \text { if(num_cycles }4): \\ 6 & \text { print("Too many.") } \\ 7 & \text { else: } \\ 8 & \text { for i in range (1, num_cycles+1): } \\ 9 & \text { print (i,"":", "Lather and rinse.") } \\ 10 & \text { print("Done.") } \\ 11 & \\ 12 & \text { user_cycles }=\text { int (input()) } \\ 13 & \text { print_shampoo_instructions(user_cycles) }\end{array} \)

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!