函数的返回值
def measure():
"""测量湿度和温度"""
print("测量开始...")
temp = 39
wetness = 50
print("测量结束...")
2020-04-18