import math

measurements = [1.0, 4.0, 9.0, 16.0, 25.0]

for value in measurements:
    print(math.sqrt(value))

1.0
2.0
3.0
4.0
5.0