Skip to content

Instantly share code, notes, and snippets.

@Suleman-Elahi
Created December 17, 2018 09:46
Show Gist options
  • Save Suleman-Elahi/ce952141f4751f39a89fe9f4d0a00db5 to your computer and use it in GitHub Desktop.
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
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