Vidyalelo
Python · Q38

Python Built

Programming · Python · question 38

Q38

What does the built-in function chr() do in Python?

A.
Returns a string representing a character whose Unicode code point is the integer
Answer
B.
Converts a string to lowercase
C.
Returns the square of a number
D.
Returns the absolute value of a number

Answer: Option A

Solution

Answer: Option A
Solution:
The correct answer is Option A: Returns a string representing a character whose Unicode code point is the integer.
The chr() function in Python is used to return a string representing a character whose Unicode code point is the integer passed as an argument. For example, chr(65) returns the string 'A' because the Unicode code point of the character 'A' is 65. Therefore, the function converts integer Unicode code points to their corresponding characters.