+ 1
How can we get ascii value of a digit and vice versa
How to convert A to 65 and 97 to a
4 Respuestas
+ 2
ord('A') -> 65
chr(65) -> 'A'
+ 1
To convert 97 to a:
print(chr(int(input())))
+ 1
Please tell how to convert A to 65 also
0
Can you tell how can I use the conversion in a loop