Python-Quizzes | Python String Quiz | Question 15
Question 15: What is the output of the following program?
print ( '\x25\x26' ) |
(A) \x25\x26
(B) ‘\x25\x26’
(C) %&
(D) &%
Answer: (C)
Explanation: In the above code \x is an escape sequence that means the following 2 digits are a hexadecimal number encoding a character. Hence the corresponding symbols will be on the output screen.
Quiz of this Question
Please comment below if you find anything wrong in the above post
Please Login to comment...