n = int(input("type how many input : "))
if n!=0:
small = int(input("type number 1 value : "))
for i in range(1,n):
temp = int(input("type number ",n+1," : value "))
if temp < small:
small=temp
print (small)
我得到了这个回应
TypeError:预计最多输入1个参数,得到3个
如何解决这个问题?