For the following function definition:def StudentInfo (name, country=’China’, age=18): print (‘%s, %s, %d’%(name, country, age))The correct function call include ______()

A.StudentInfo(‘David’, ‘United States’, 20) B.StudentInfo(‘David’, , 20) C.StudentInfo(‘David’, age=20) D.StudentInfo(name=’David’, ‘United States’) 此题为多项选择题。

时间:2024-03-12 17:30:39

相似题目