Table of Contents
The chr() method returns a character (a string) from an integer (represents unicode code point of the character).
The syntax of chr()
is:
chr(i)
1. chr() Parameters
chr()
method takes a single parameter, an integer i.
The valid range of the integer is from 0 through 1,114,111.
2. Return Value from chr()
chr()
returns:
- a character (a string) whose Unicode code point is the integer i
If the integer i is outside the range, ValueError
will be raised.
3. Example 1: How chr() works?
print(chr(97)) print(chr(65)) print(chr(1200))
Output
a A Ұ
Here, 97 is the unicode of a, 65 is the unicode of A, and 1200 is the unicode of Ұ.
4. Example 2: Integer passed to chr() is out of the range
print(chr(-1))
Output
Traceback (most recent call last): File "", line 1, in ValueError: chr() arg not in range(0x110000)
When you run the program, ValueError
is raised.
It’s because the argument passed to chr()
method is out of the range.
The reverse operation of chr()
function can be performed by ord()
function. To learn more, visit Python ord() function
Related posts:
Python Program to Slice Lists
Python Program to Convert Decimal to Binary Using Recursion
Python Program to Compute the Power of a Number
Python Program to Find Sum of Natural Numbers Using Recursion
Python datetime
Python next()
Python Program to Print Colored Text to the Terminal
Python getattr()
Python for Programmers with introductory AI case studies - Paul Deitel & Harvey Deitel
Python reversed()
Python pow()
Python delattr()
Python Program to Create a Countdown Timer
Python iter()
Python frozenset()
Python compile()
Python Program to Print the Fibonacci sequence
Python Dictionary update()
Python String isspace()
Python String upper()
Deep Learning with Applications Using Python - Navin Kumar Manaswi
Python Program to Parse a String to a Float or Int
Python Program to Count the Number of Digits Present In a Number
Python Program to Concatenate Two Lists
Python String islower()
Python oct()
Python List copy()
Python List
Python Program to Illustrate Different Set Operations
Python Program to Trim Whitespace From a String
Python Program to Display Calendar
Python Program to Represent enum