45. Find the output of the following program code
for k in range(5,1,-1):
print(k,end="")
(2 Points)
12345
5 4 3 2 1
543210-1
5 4 3 2
Answers
Answered by
0
Answer:
1 543210-1 5 4 3 2. 1. is answer
Similar questions