Answers for "ascii value of string in python"

2

write a program to find ascii value of a character in python

# Program to find the ASCII value of the given character

c = 'p'
print("The ASCII value of '" + c + "' is", ord(c))
Posted by: Guest on April-06-2021
16

how to write the character from its ascii value in python

c='p'
x=ord(c)
#it will give you the ASCII value stored in x
chr(x)
#it will return back the character
Posted by: Guest on June-15-2020
0

python ascii code to string

>>> L = [104, 101, 108, 108, 111, 44, 32, 119, 111, 114, 108, 100]
>>> ''.join(chr(i) for i in L)
'hello, world'
Posted by: Guest on October-28-2020
0

python ascii to string

# to convert ascii code to character 
# use "chr()" function with acsii value as parameter to function


asc = [x for x in range(65, 65+26)] 
#asc store ascii value form "A" to "Z"
string = ""
for i in asc:
  string += chr(i)
  
print(string) #converted list of ascii code to string
Posted by: Guest on June-16-2020

Code answers related to "ascii value of string in python"

Python Answers by Framework

Browse Popular Code Answers by Language