Python | Functions | Question 3
What is the output of the following segment :
chr(ord('A'))
(A) A
(B) B
(C) a
(D) Error
Answer: (A)
Explanation: ord() function converts a character into its ASCII notation and chr() converts the ASCII to character.
Quiz of this Question
Please Login to comment...