使用python达到以下条件. 要求定义6个变量并按要求赋值,输出格式如下所示: 姓名:李丽 学号:2017b08232460 性别:女 年龄:19 身高:161 体重:101.5
时间: 2023-05-13 07:07:44 浏览: 230
Python中的变量
以下是使用 Python 达到以上要求的代码:
name = "李丽"
student_id = "2017b08232460"
gender = "女"
age = 19
height = 161
weight = 101.5
print("姓名:{} 学号:{} 性别:{} 年龄:{} 身高:{} 体重:{}".format(name, student_id, gender, age, height, weight))
阅读全文