Give the output of the following code.
a=1
for i in range(1,5):
a*=i
print(a, end=" ")
Answers
Answered by
0
Answer:
a = 1
for I in range (1,5)
a = a*i
print (a, end = "")
Output :-
1 2 3 4 5
Answered by
0
Answer:
1,2,3,4
Explanation:
Similar questions