Give the output of the following code.
a=1
for i in range(1,5):
a*=i
print(a, end=" ")
Answers
Answered by
1
Answer:
a*= i i =1,5 a=1
a*=1×1=1
=1×5=5
Similar questions