This commit is contained in:
2026-03-18 22:48:20 -07:00
commit 275199e005
312 changed files with 266738 additions and 0 deletions

View File

@@ -0,0 +1,13 @@
import numpy
rainfall = [0.0, 0.1, 0.6, 0.7, 0.4, 0.3]
for n in range(len(rainfall)):
x = rainfall[n]*25.4
if x < 0:
raise ValueError(
'make sure no one is drinking out of the rainfall meter')
elif x >= 10:
print(x)
z = numpy.max(rainfall)
print(z*25.4)