Answers for "how to get the code char in python"

0

python show charracter code

>>> ord('a')
97
>>> chr(97)
'a'
>>> chr(ord('a') + 3)
'd'
>>>
Posted by: Guest on April-06-2021
0

char in python

there is no dataype as char in python
Posted by: Guest on March-26-2021

Code answers related to "how to get the code char in python"

Python Answers by Framework

Browse Popular Code Answers by Language