You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+4-4Lines changed: 4 additions & 4 deletions
Original file line number
Diff line number
Diff line change
@@ -658,7 +658,7 @@ The backslash (`\`) character can be used in a string literal to escape characte
658
658
|`\"`| Double quote (`"`) |
659
659
|`\a`| ASCII Bell (BEL) |
660
660
|`\b`| ASCII Backspace (BS) |
661
-
|`\f`| ASCII Formfeed (FF) |
661
+
|`\f`| ASCII Form-feed (FF) |
662
662
|`\n`| ASCII Linefeed (LF) |
663
663
|`\r`| ASCII Carriage Return (CR) |
664
664
|`\t`| ASCII Horizontal Tab (TAB) |
@@ -3539,7 +3539,7 @@ The backslash (`\`) character can be used in a string to escape characters that
3539
3539
|`\"`| Double quote (`"`) |
3540
3540
|`\a`| ASCII Bell (BEL) |
3541
3541
|`\b`| ASCII Backspace (BS) |
3542
-
|`\f`| ASCII Formfeed (FF) |
3542
+
|`\f`| ASCII Form-feed (FF) |
3543
3543
|`\n`| ASCII Linefeed (LF) |
3544
3544
|`\r`| ASCII Carriage Return (CR) |
3545
3545
|`\t`| ASCII Horizontal Tab (TAB) |
@@ -6181,7 +6181,7 @@ Python has built-in functions to handle various aspects of datatypes such as che
6181
6181
6182
6182
`type()` and `isinstance()` builtin functions are used for checking the data type of objects.
6183
6183
6184
-
Check out the **Type Checking** section in the chapter **Variable, Objects & Data Types** to learn more about it in detail.
6184
+
Check out [Type Checking](#type-checking) section in the chapter [Variable, Objects & Data Types](#variables-objects--data-types) to learn more about it in detail.
6185
6185
6186
6186
### Built-in Type Functions
6187
6187
@@ -6202,7 +6202,7 @@ The following functions are often used to assign a default value or create an em
6202
6202
|`frozenset()`|`frozenset()`|
6203
6203
|`dict()`|`{}`|
6204
6204
6205
-
The **Type Casting** section of the chapter **Variable, Objects & Data Types** covers these functions in detail in case any argument is passed.
6205
+
The [Type Casting](#type-casting) section of the chapter [Variable, Objects & Data Types](#variables-objects--data-types) covers these functions in detail in case any argument is passed.
0 commit comments