Literals | Description |
---|---|
Integer Literal | It can be a decimal, octal or hexadecimal constant. |
Floating-point Literal | It has an integral part, a decimal point, a fractional part and an exponent part. |
Boolean Literal | It has two boolean literals: True and False. |
Character Literal | These literals are enclosed in single quote. |
String Literal | These literals are enclosed in double quotes. |
Escape Codes | Meaning |
---|---|
\n | Newline |
\r | Carriage return |
\t | Tab |
\v | Vertical tab |
\b | Backspace |
\f | Form feed |
\a | Alert |
\' | Single quote |
\" | Double quote |
\? | Question mark |
\\ | Backslash |