write a program that displays the following number sequence. make sure there is no extra comma.(2,2.25,2.50,2.75,..,4) in python loop
i=2 while i<4: print(i, sep='', end=', ', flush=True) i+=0.25 print(4.0)
Need a fast expert's response?
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Comments
Leave a comment