Ask Question

Write a function named ilovepython that prints out I love Python three times. Then, call that function.

+1
Answers (1)
  1. 27 August, 20:10
    0
    The program to this question can be described as follows:

    Program:

    def ilovepython () : #defining a method

    for i in range (3) : #defining a loop that print messasge three times

    print ('I love Python') #print messasge

    ilovepython () #calling the method

    Output:

    I love Python

    I love Python

    I love Python

    Explanation:

    Description of the python program can be described as follows:

    In the above Python program, a method "ilovepython" is defined, inside the method a for loop is used, inside the loop print method is used, that print the message "I love Python". In python for loop is used to iterate over series and we can execute a set of statements with the loop, tuple, series, once for each element in the list.
Know the Answer?
Not Sure About the Answer?
Find an answer to your question 👍 “Write a function named ilovepython that prints out I love Python three times. Then, call that function. ...” 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