Answer to Question #3162 in Python for mukundareddy
Program to count all numbers in between x and y using FOR LOOP.
1
2011-06-20T12:24:08-0400
#!/usr/bin/python
i0=ord('a');
i1=ord('z');
for i in range(i0,i1):
print chr(i)
Need a fast expert's response?
Submit order
and get a quick answer at the best price
for any assignment or question with DETAILED EXPLANATIONS!
Learn more about our help with Assignments:
Python
Comments
Leave a comment