16.8k views
3 votes
Write a for loop that will iterate through the integers from 32 to 255. for each, show the corresponding character from the character encoding.

User Voddan
by
7.9k points

1 Answer

2 votes
for i in range( 32, 256 ):
print( "%d\t%s" % ( i, chr( i ) ) )

User Lee Crossley
by
8.2k points