I'm trying to limit the output of a for loop to 200 counts and then breaking it. The purpose of the loop is to print out defined unicode characters onto a html table after a user sets the range.
So far I have this:
Code:
start = form["start"].value
end = form["end"].value
.
.
for char in range(int(start),int(end)+1):
name = unicodedata.name(unichr(char),