调用函数 print_info("李华","16","男")输出的结果是: “姓名: 李华,年龄: 16, 性别:男”
def print_info(name,age,sex);
str = "姓名: "+name+", 年龄: "+age+", 性别: "+sex
print(str)