Which of the following escape sequence represents tab?
Answers
Answer:
Table of escape sequences :
Escape sequence Hex value in ASCII Character represented
\t 09 Horizontal Tab
\v 0B Vertical Tab
\\ 5C Backslash
\' 27 Apostrophe or single quotation mark
Hope it is helpful to you. Make me brainliest.
\t is an escape sequence for a tab character.
(b) \t
Let's write the full question
Which of the following escape sequence represents tab?
(a) \a
(b) \t
(c) \n
(d) \b
Extra Information
Escape characters are those characters in Python which help us in representing whitespace characters.
There are various other types of escape characters such as
\' for Single Quote
\\ for Backslash
\n for New Line
\r for Carriage Return
\t for Tab
\b for Backspace
\f for Form Feed
\ooo for Octal value
\xhh for Hex value
Python was created by Guido van Rossum and came into existence in 1991. It is a high-level and general programming language. It is a very lucid programming language as it has a good language construct and object-oriented approach. It is dynamically typed and garbage-collected.