Advertisement
Spocoman

05. Print Part of the ASCII Table

Jan 19th, 2022
91
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.14 KB | None | 0 0
  1. start = int(input())
  2. final = int(input())
  3. output = ''
  4.  
  5. for i in range(start, final + 1):
  6.     output += chr(i) + ' '
  7.  
  8. print(output)
  9.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement