Open In App

Python-Quizzes | Python String Quiz | Question 15

Like Article
Like
Save Article
Save
Share
Report issue
Report

Question 15: What is the output of the following program? 

Python3




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


Last Updated : 18 Sep, 2020
Like Article
Save Article
Previous
Next
Share your thoughts in the comments
Similar Reads