Convert Int To Ascii Python Code Example


Example 1: int to ascii python


# converting intefer to ascii number
# declaring variable
i = 3
ord(str(i)) # output --> 51

Example 2: python int to char


output = chr(99)
print(output)

# c

output = str(5)
print(output)

# 5

Example 3: python int to ascii string


chr(97) -> 'a'

Comments

Popular posts from this blog

Converting A String To Int In Groovy

"Cannot Create Cache Directory /home//.composer/cache/repo/https---packagist.org/, Or Directory Is Not Writable. Proceeding Without Cache"

Android How Can I Convert A String To A Editable