Ask Question
30 November, 04:39

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: 2 1 : Lather and rinse. 2 : Lather and rinse. Done. Hint: Define and use a loop variable.

+2
Answers (1)
  1. 30 November, 07:46
    0
    See explaination

    Explanation:

    #Run the code in the python version 3. x.

    #Define the function.

    def shampoo_instructions (num_cycles):

    #Check the cycles to be greater than 1.

    if num_cycles < 1:

    #Display the statement.

    print ('Too few.')

    #Check the cycles to be greater than 4.

    elif num_cycles > 4:

    #Display the statement.

    print ('Too many.')

    #The else part.

    else:

    #Initialize the variable.

    N = 1;

    #Begin the for loop.

    for N in range (N, num_cycles+1):

    #Print the result.

    print (N, ": Lather and rinse.")

    #Print the statement.

    print ('Done.')

    #Call the function.

    shampoo_instructions (2)
Know the Answer?
Not Sure About the Answer?
Find an answer to your question ✅ “Write a function shampoo_instructions () with parameter num_cycles. If num_cycles is less than 1, print "Too few.". If more than 4, print ...” in 📘 Computers and Technology if you're in doubt about the correctness of the answers or there's no answer, then try to use the smart search and find answers to the similar questions.
Search for Other Answers