编程要求 输入一个班的学生的身高,找出能作为升旗手的学生身高有哪些? 共多少人? 升旗手的身高要求:170cm~175cm。 要求:找出的可选身高用列表表示。 根据提示,在右侧编辑器补充代码 。 测试说明 平台会对你编写的代码进行测试: 测试输入:165,175,180,168,172,178,182,173,169,170,174; 预期输出: [175, 172, 173, 170, 174] 5
时间: 2023-09-08 20:10:48 浏览: 170
小学生升旗手自我介绍范文精选.doc
以下是Python代码的实现:
```python
heights = input().split(',') # 输入身高,使用逗号分隔
selected_heights = [] # 用于存储符合条件的身高
for h in heights:
if 170 <= int(h) <= 175: # 判断身高是否符合要求
selected_heights.append(int(h)) # 将符合要求的身高添加到列表中
print(selected_heights) # 输出符合要求的身高列表
print(len(selected_heights)) # 输出符合要求的身高人数
```
输入测试数据后,程序会输出符合要求的身高列表和人数。输出结果为:
```
[175, 172, 173, 170, 174]
5
```
阅读全文