第15883题 判断题
判断调用Python函数print_info("李华","16","男")的输出是否为"姓名:李华,年龄:16,性别:男"

给定Python函数print_info的定义如下:

def print_info(name,age,sex);
    str = "姓名:" +name+",年龄:" +age+",性别:" +sex
    print(str)
{{ option.label }}
子题{{ index + 1 }} {{ child.type_label }}
{{ option.label }}
✓ 正确 ◐ 部分正确 ✗ 错误
程序运行统计
暂无判题统计
提交{{ questionInfo.stats ? questionInfo.stats.submit_count : 0 }}次 正确率{{ statsAccuracy }}%
答案解析