187k views
1 vote
What is the output?

def printChar(word, n):
-> while (n > 0):
--> print(word)
--> n-= 1
printChar ('a', 5)

1 Answer

1 vote

Final answer:

The Python function printChar outputs the given 'word' argument a number of times specified by the 'n' parameter. The function is called with the word 'a' and number 5, resulting in the character 'a' being printed 5 times on separate lines.

Step-by-step explanation:

The question pertains to a Python function named printChar which takes a string word and an integer n as arguments. The function contains a while loop that repeats as long as n is greater than 0. Inside the loop, it prints the word argument and then decrements n by 1.

Given the call printChar('a', 5), the output will be as follows:

  • a
  • a
  • a
  • a
  • a

Thus, the character 'a' will be printed 5 times onto the screen, each on a new line.

User Dhchen
by
8.0k points