Respuesta :

Answer:

following are the program to this question:

for i in range(45,86): #defining loop, that count form 45 to 86.

print(chr (i))

#convert the value into character and print its value.

Output:

Please find the attachment.

Explanation:

The description of the above python code can be described as follows:

  • In the above program, a for loop is declare, which uses a range keyword, which is the inbuilt method, that is used to collect a specific range of the data.
  • In the next step,  the print method is used, which uses the "chr" method, which is also an inbuilt method, that converts all integer value into the ASCII code.
Ver imagen codiepienagoya