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
0
use for looppppppppppppppppppppppppppppppppppppppppppppppppp
Answered by
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