试题详情

请看下面一段程序:def info(age,name=小明): ? print({}的年龄为{}.format(name,age)) info(28,小红)运行上述程序,最终输出的结果为( )。

A28的年龄为小明

B28的年龄为小红

C小红的年龄为28

D小明的年龄为28