Computer Science, asked by mstkhatun, 2 months ago

1. Write programs in python that gets an integer input and calculate the multiplication of the flowing series Multi = n * (n-1) * (n-2) * ………* 3 * 2 * 1
a. Use for loop
b. use do-while loop

Answers

Answered by ambikaprasadmishra26
0
use for looppppppppppppppppppppppppppppppppppppppppppppppppp
Answered by yassersayeed
0

A Python for loop iterates over an object until that object is complete.

While Writing programs in python that gets an integer input and calculate the multiplication of the flowing series Multi = n * (n-1) * (n-2) * ………* 3 * 2 * 1

always use the loop.

So, The answer is use for loop.

Similar questions