has_high_income = True
has_good_credit = False
has_criminal_record = False
if (has_high_income or has_good_credit) and not has_criminal_record: # (T or F) and T
print("允许贷款")
else:
print("不允许贷款")
"""
允许贷款
"""
# 13. 比较运算符(>; >=; <; <=; !=; ==)
temperature = int(input("请输入今天的气温:"))
if temperature >= 30:
print("今天是炎热的一天")
elif 30 > temperature > 20:
print("今天是温暖的一天")
else:
print("今天要加衣服了")
"""
请输入今天的气温:25
今天是温暖的一天
"""
练习:你的名字长度必须不少于2个字符,且不能超过20个字符;
符合规定的是好名字。
name = input("请输入你的名字: ")
if len(name) < 2:
print("你的名字长度必须大于2个字符")
elif len(name) > 20:
print("你的名字长度必须小于20个字符")
else:
print("这是一个好名字")
# 14.利用所学知识建立一个重量转换器小程序
weight = int(input("weight: "))
unit = input("(L)bs or (K)g: ")
if unit.upper() == "L":
converted = weight * 0.45
print(f"You are {converted} kilos")
elif unit.upper() == "K":
converted = weight / 0.45
print(f"You are {converted} pounds")
else:
print("Print error!")
"""
weight: 120
(L)bs or (K)g: l
You are 54.0 kilos
"""
🌷🍁 博主猫头虎(🐅🐾)带您 Go to New World✨🍁 🦄 博客首页——🐅🐾猫头虎的博客🎐 🐳 《面试题大全专栏》 🦕 文章图文…
问题描述:
在跑编译正常通过,CPU上也正常运行的某项目时,在运行到某个epoch时,程序突然出现以下错误:
RuntimeError: CUDA error: an illegal memory access was encountered
CUDA kernel errors might be asynchron…
Please refer to XXXXX for the individual test results._zhizhiqiuya 错误原因: 项目开发中没有编写测试,打包过程中test检测错误 解决方案: 跳过测试单元 修改pom文件 <build><plugins><!-- maven 打包时跳过测试 -->…