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