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
India Languages,
3 months ago
Math,
3 months ago
Geography,
3 months ago
Social Sciences,
7 months ago
Hindi,
7 months ago
English,
1 year ago