Please help me write an exact code in PYTHON, after that print a screenshot when it works perfect. Thanks
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




Program code:
i=1
Don't use plagiarized sources. Get Your Custom Essay on
Answered! Please help me write an exact code in PYTHON, after that print a screenshot when it works perfect. Thanks 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
sum=0
while i<99:
k=i
i=i+2
sum=sum+(float(k)/i)
print k,”/”,i
print “total sum= “,sum