In a News, channel, they would publish “breaking News” 5 times. Write a program to get the desired output in python script mode.
Answers
Answered by
0
Answer:
i = 5
while i>0:
print("Breaking News")
i = i + 1
Similar questions