Join the IDNLearn.com community and start getting the answers you need today. Our platform offers reliable and detailed answers, ensuring you have the information you need.
numerator = 1
denominator = 2
total = 0
while denominator != 20:
total += (numerator/denominator)
numerator+=2
denominator+=2
print(total)
I wrote my code in python 3.8. Best of luck.