Question #220941

Product of the Given Numbers

Write a Python program of Product of the Given Numbers. It consists of two test cases


The below link contains Product of the Given Numbers - Question, explanation and test cases


https://drive.google.com/file/d/10Nz6JMLsNfGXtA3WhaSYcRx5IO8JqieU/view?usp=sharing


We need all test caese can be come while code was running

Expert's answer

N=int(input("Enter number of integers: "))
product=1
for i in range(N):
    x=int(input())
    product*=x

print(product)
LATEST TUTORIALS
APPROVED BY CLIENTS