Answer :

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.

  • American Standard Code for Information Interchange, is a character encoding standard for electronic communication. ASCII codes represent text in computers, telecommunications equipment, and other devices.
  • These include the digits 0 to 9, lowercase letters a to z, uppercase letters A to Z, and punctuation symbols

Other Questions