Created
December 17, 2018 09:46
-
-
Save Suleman-Elahi/ce952141f4751f39a89fe9f4d0a00db5 to your computer and use it in GitHub Desktop.
A simple python script to generate unicode characters in a specific range
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
i=int(input("Enter Lrange: ")) | |
j=int(input("\nEnter Rrange: ")) | |
for x in range(i,j,1): | |
print (chr(x),end=' ') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment