CBSE Class 11 Computer Science Question 55 of 106

Python Fundamentals — Question 4

Back to all questions
4
Question

Question 4

Can nongraphic characters be used in Python ? How ? Give examples to support your answer.

Answer

Yes, nongraphic characters can be used in Python with the help of escape sequences. For example, backspace is represented as \b, tab is represented as \t, carriage return is represented as \r.