What should be python programming of converting ASCII code of alphabet to direct alphabet?
Answers
Answered by
0
Answer:
a=int(input("Enter ASCII code"))
print(String(a))
Answered by
0
Below are the program for the above question :
Explanation:
character=int(input("Input a ascii value to change the value into its character"))#take the input from the user to convert it into albhabets.
print((character))#print the albhabets value from the asscii value.
Output:
- if the user inputs 97, then it will prints 'a'.
- if the user inputs 98, then it will prints 'b'.
Code Explanation:
- The above code is in python language, in which the first line is used to take the inputs as ASCII value from the user and store it into a character variable after converting the value into an integer.
- Then the print function prints the value after converting it into charater from ASCII value.
Learn More:
- Python :https://brainly.in/question/14689905
Similar questions