收到错误消息必须为str not int

时间:2019-07-23 09:31:49

标签: python-3.x

我在Python 3.0中有一个代码 我遇到此错误(必须为str not int),请帮忙

s=0
k=1
t=1
c=input("c0")
for i in range(1,100):
  k=1
  t=1
  for j in range(1,i):
    k=k*j
    t=t*(c+j)
  s=s+(k/t)

print (s)

0 个答案:

没有答案