英俊男孩建坤 发表于 2020-10-19 16:18:58

大佬求救

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:37:18

本帖最后由 sunrise085 于 2020-10-19 16:38 编辑

把b两侧的加号改为逗号
下面的d也一样
原因:不同类型变量不能相加

英俊男孩建坤 发表于 2020-10-19 16:43:27

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:}

jtxs0000 发表于 2020-10-19 16:52:38

把input 里面的b 改成 str(b)
c = int(input("Enter no of students taken course "+ str(b) +":"))

英俊男孩建坤 发表于 2020-10-19 16:56:12

jtxs0000 发表于 2020-10-19 16:52
把input 里面的b 改成 str(b)

行了 谢谢

jtxs0000 发表于 2020-10-19 16:58:35

英俊男孩建坤 发表于 2020-10-19 16:56
行了 谢谢

哪里有问题?发出来

jtxs0000 发表于 2020-10-19 16:59:16

{:10_262:}

英俊男孩建坤 发表于 2020-10-19 17:04:50

jtxs0000 发表于 2020-10-19 16:58
哪里有问题?发出来

没事了 我发现我忘记吧逗号改加好了 谢谢哈
页: [1]
查看完整版本: 大佬求救