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

Yes nongraphic characters can be used in python using a backslash.

e.g. print(‘My name is\nKhan). Here \n will break the line. Other nongraphic characters include ‘\t’, ‘\b’ etc.