代码
提交代码
def add_student(name, age, city = 'nanjing'): print(name) print(age) print(city) add_student('jerry', 12)
运行结果