Please help me write an exact code in PYTHON, after that print a screenshot when it works perfect. Thanks
Note: the second picture is a “Problem 5.26 page 163” that the first picture request.
Points 20 Due Jun 6 by 11:59pm submitting a text entry boo, a website url, a media recording, or a file upload write a program in python to sum the following series using loops: +95/97+97/99. See book page 163 problem 5.26 (Sum of series) Take screenshot of the script and the output Submit the script and the screenshot In the first few lines, please include Created by Your name Assignment name/ description Date Some Rubric (5) Ratings Criteria Full Marks 10.0 pts program runs without error and shows correct output 10.0 pts 100 pts 10.0 pts Total Points: 20.0
Expert Answer
main.py
sum = 0.0
n = 1.0
d = 3.0
while d < 100:
sum = sum + (n/d)
n = n + 2
d = d + 2
print sum
Output :-
Don't use plagiarized sources. Get Your Custom Essay on
Answered! Points 20 Due Jun 6 by 11:59pm submitting a text entry boo, a website url, a media recording, or a file upload write a…
GET AN ESSAY WRITTEN FOR YOU FROM AS LOW AS $13/PAGE
45.1244503031
Snapshot of code ——->