Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribedHow 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

Step: 1

blur-text-image

Get Instant Access with AI-Powered Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Students also viewed these Databases questions