def StudentInfo(country='中国', name):
print('%s,%s' % (name, country))
StudentInfo('美国', '大卫')
上述代码报错:
原因:SyntaxError: non-default argument follows default argument
def StudentInfo(country='中国', name):
^
def StudentInfo(name, chineselevel='良好', country='中国'):
print('姓名:%s,中文水平:%s,国家:%s'%(name,chineselevel,country))
StudentInfo(name='大卫', '良好', '美国')