标签:问题 log 分享图片 syntax div python学习 src file erro
在使用中忽略了一个问题,形参有些和实参类似,也不能是“关键字后面含有位置参数”,即“默认形参”后面必须不能含有“位置”形参!
def test(a=100,b): print("test") test(a=100,b=200)
输出:
File "test01.py", line 1 def test(a=100,b): ^ SyntaxError: non-default argument follows default argument
实际上,这种形式在写的时候,IDE中是有错误提示的
标签:问题 log 分享图片 syntax div python学习 src file erro
原文地址:http://www.cnblogs.com/gengyi/p/8016237.html