交互环境可以得到结果,而网站这显示错误
s = set([('Adam', 95), ('Lisa', 85), ('Bart', 59)]) for x in s: n=1 for y in x: if n==1: print(y,end=(":")) else: print(y,"\n") n=n+1 也能得到结果,已经在pycharm和交互环境运行过,不知道是不是网站这没有end()方法?
s = set([('Adam', 95), ('Lisa', 85), ('Bart', 59)]) for x in s: n=1 for y in x: if n==1: print(y,end=(":")) else: print(y,"\n") n=n+1 也能得到结果,已经在pycharm和交互环境运行过,不知道是不是网站这没有end()方法?
2020-03-08
举报