KnowledgeBoat Logo

Computer Science

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

Python Funda

55 Likes

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.

Answered By

23 Likes


Related Questions