解决SyntaxError: unexpected EOF while parsing
解决SyntaxError: unexpected EOF while parsing分析:Python错误SyntaxError: unexpected EOF while parsing含义是:SyntaxError:解析时出现意外的EOFnums=dict(one=1,two=2,three=3)print("字典个数:%s"%len(nums))print("字典value总和:%d"%s
·
解决SyntaxError: unexpected EOF while parsing
分析:
Python错误SyntaxError: unexpected EOF while parsing
含义是:SyntaxError:解析时出现意外的EOF
nums=dict(one=1,two=2,three=3)
print("字典个数:%s"%len(nums))
print("字典value总和:%d"%sum(nums.values()))
print("字典中的最大值是:%s,最小值是:%s"%(max(nums),min(nums))
解决方法:
一般出现这种问题是因为少了个括号,print(“字典中的最大值是:%s,最小值是:%s”%(max(nums),min(nums)))
更多推荐
已为社区贡献1条内容
所有评论(0)