序号 | 访问地址 | 功能说明 |
1 | / | 实时显示最新数据 |
2 | /input?tem=20&light=40 | 提交传感器数据 |
3 | /search | 查看显示某一天的历史数据 |
若要查看某一天的数据记录,在浏览器应输入的 URL 为。
for i in s :
if s[i] < tmin or s[i] > tmax:
c += 1
print("超过适宜温度的次数",c)
B . c = 0for i in range(len (s)) :
if tmin <= s[i] <= tmax:
continue
c += 1
print("超过适宜温度的次数",c)
C . c = 0;i = 1while i <= len (s) :
if not(tmin <= s[i] <= tmax) :
c += 1
i += 1
print("超过适宜温度的次数",c)
D . c = [0]*len (s)for i in range(len (s)) :
if not(s[i] >= tmin and s[i] <= tmax):
c[i] = 1
print("超过适宜温度的次数",sum(c))