Computer Science, asked by sunnyjoy2004, 5 months ago

Give the output of the following code.
a=1
for i in range(1,5):
a*=i
print(a, end=" ")​

Answers

Answered by ayushakjena
1

Answer:

a*= i i =1,5 a=1

a*=1×1=1

=1×5=5

Similar questions