编写一个函数从键盘输入体温值,编写另一个函数判断输入的体温是否正常
时间: 2024-03-03 21:53:51 浏览: 107
好的,我来回答你的问题。
以下是实现从键盘输入体温值的 Python 代码:
```python
def input_temperature():
temperature = float(input("请输入体温值:"))
return temperature
```
接下来是实现判断输入的体温是否正常的 Python 代码:
```python
def is_normal_temperature(temperature):
if temperature >= 36.0 and temperature <= 37.5:
return True
else:
return False
```
以上两个函数可以组合使用,实现从键盘输入体温值并判断是否正常的功能。
```python
temperature = input_temperature()
if is_normal_temperature(temperature):
print("体温正常")
else:
print("体温异常")
```
希望我的回答能够帮到你。
阅读全文