大佬求救
a = int(input("Enter the number of courses: "))b = 1
while b <= a:
c = int(input("Enter no of students taken course "+ b +":"))
b = b+1
d = 1
while d <= c:
e = int(input("Enter student " + d+"'s mark"))
d = d+1
sum = 0
sum = sum +e
Average = sum / c
print("Average Mark: "+Average)
在第四排 我想插入变量b进input 后面的语句中要怎么办我这样子插入显示错误 本帖最后由 sunrise085 于 2020-10-19 16:38 编辑
把b两侧的加号改为逗号
下面的d也一样
原因:不同类型变量不能相加 sunrise085 发表于 2020-10-19 16:37
把b两侧的加号改为逗号
下面的d也一样
原因:不同类型变量不能相加
c = int(input("Enter no of students taken course ", b ,":"))
TypeError: input expected at most 1 argument, got 3
还是不行显示这个{:10_266:} 把input 里面的b 改成 str(b)
c = int(input("Enter no of students taken course "+ str(b) +":")) jtxs0000 发表于 2020-10-19 16:52
把input 里面的b 改成 str(b)
行了 谢谢 英俊男孩建坤 发表于 2020-10-19 16:56
行了 谢谢
哪里有问题?发出来 {:10_262:} jtxs0000 发表于 2020-10-19 16:58
哪里有问题?发出来
没事了 我发现我忘记吧逗号改加好了 谢谢哈
页:
[1]