simeonshopov

Part of the ASCII table

Nov 25th, 2019
237
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.10 KB | None | 0 0
  1. start_ = int(input())
  2. end_ = int(input())
  3.  
  4. for i in range(start_, end_ + 1):
  5.   print(chr(i), end=" ")
Advertisement
Add Comment
Please, Sign In to add comment