Ask 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 "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. 29 April, 08:28
    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 & Technology if the answers seem to be not correct or there’s no answer. Try a smart search to find answers to similar questions.
Search for Other Answers