>>> s = 'hi'
>>> [ord(c) for c in s]
[104, 105]
# Program to find the ASCII value of the given character
c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))
asciiValue=ord(stringCharacter)
#example
asciiValue=ord('A')
#in this example asciiValue equals 64
>>> chr(104)
'h'
>>> chr(97)
'a'
>>> chr(94)
'^'
>>> ord('h')
104
>>> ord('a')
97
>>> ord('^')
94
# Python3 code to demonstrate working of
# Convert String list to ascii values
# using loop + ord()
# initialize list
test_list = ['gfg', 'is', 'best']
# printing original list
print("The original list : " + str(test_list))
# Convert String list to ascii values
# using loop + ord()
res = []
for ele in test_list:
res.extend(ord(num) for num in ele)
# printing result
print("The ascii list is : " + str(res))
# ASCII stands for American Standard Code for Information Interchange.
# It is a numeric value given to different characters and symbols,
# for computers to store and manipulate.
# Use - ord() function to find this value.
print(ord("A"))
# output: 65
# Keep in mind that capital and simple of the same letter have different values.
print(ord("a"))
# output: 97