给定Python函数print_info的定义如下:
def print_info(name,age,sex); str = "姓名:" +name+",年龄:" +age+",性别:" +sex print(str)
正确
错误