热门标签
更多>
搜索结果
查询Tags标签: python02,共有 2条记录-
Python02代码
实例1 height = 1.65 print("你的身高:"+str(height)) weight = 45.5 print("你的体重:"+str(weight)) bmi=weight/(height*height) print("你的BMI指数为:"+str(bmi)) #判断身材是否合理 if bmi<18.5:print("你的体重过轻 ~@_@~&q…
2022/9/13 14:46:11 人评论 次浏览 -
python02-数据类型
身份验证is;type(name) is int 返回值为true或false、is not; type(name) is not int 返回值为true或false三元运算d = a if a > 15 else b d = 值1 if 条件A else值2如果条件A成立,就取左边的值1,否则取值2数据类型-列表extend 合并 n1 = ["bob","a…
2022/8/25 1:25:30 人评论 次浏览