用python编程 根据年龄和身高,判断是否符合报考飞行员的条件 条件:18-30岁,且身高175-185
时间: 2024-09-19 20:16:42 浏览: 36
Python金融量化的高级库:TA-Lib-0.4.24(包含python3.7、3.8、3.9、3.10的32位和64位版本)
在Python中,我们可以创建一个函数来检查一个人是否满足报考飞行员的年龄和身高条件。以下是一个简单的例子:
```python
def is_pilot_eligible(age, height):
age_thresholds = [18, 30]
height_thresholds = [175, 185]
# 检查年龄
if not age_thresholds[0] <= age <= age_thresholds[1]:
return False
# 检查身高
if not height_thresholds[0] <= height <= height_thresholds[1]:
return False
# 全部条件都满足,返回True
return True
# 示例使用
age = int(input("请输入您的年龄:"))
height = float(input("请输入您的身高(厘米):"))
if is_pilot_eligible(age, height):
print("您符合条件,可以考虑报考飞行员.")
else:
print("很遗憾,您的年龄或身高不符合报考飞行员的条件.")
阅读全文