Output the characters that are represented by the numbers from 45 to 85, one per line.
Explanation:
The code shows the output which has a range of characters from 45 to 85
for i in range 45 to 86
print char i
First there is a for loop which is set. This loop has a varaible i which is used to check the condition.
If there is a character present between 45 to 86, then the loop is entered.
The characters between the range of 45 to 85 is then printed.