|
19 | 19 | "\n", |
20 | 20 | "## Read It\n", |
21 | 21 | "\n", |
22 | | - "- [Online](https://wilfredinni.github.io/python-cheatsheet/)\n", |
| 22 | + "- [Website](https://www.pythoncheatsheet.org)\n", |
23 | 23 | "- [Github](https://github.com/wilfredinni/python-cheatsheet)\n", |
24 | 24 | "- [PDF](https://github.com/wilfredinni/Python-cheatsheet/raw/master/python_cheat_sheet.pdf)\n", |
25 | 25 | "- [Jupyter Notebook](https://mybinder.org/v2/gh/wilfredinni/python-cheatsheet/master?filepath=python_cheat_sheet.ipynb)\n", |
|
126 | 126 | " - [% operator](#operator)\n", |
127 | 127 | " - [String Formatting (str.format)](#string-formatting-strformat)\n", |
128 | 128 | " - [Lazy string formatting](#lazy-string-formatting)\n", |
129 | | - " - [Formatted String Literals (Python 3.6+)](#formatted-string-literals-python-36)\n", |
| 129 | + " - [Formatted String Literals or f-strings (Python 3.6+)](#formatted-string-literals-or-f-strings-python-36)\n", |
130 | 130 | " - [Template Strings](#template-strings)\n", |
131 | 131 | "- [Regular Expressions](#regular-expressions)\n", |
132 | 132 | " - [Matching Regex Objects](#matching-regex-objects)\n", |
|
4356 | 4356 | "cell_type": "markdown", |
4357 | 4357 | "metadata": {}, |
4358 | 4358 | "source": [ |
4359 | | - "Note: For new code prefere using str.format over the `%` operator.\n", |
| 4359 | + "Note: For new code, using str.format or f-strings is strongly recommended over the `%` operator.\n", |
4360 | 4360 | "\n", |
4361 | 4361 | "[*Return to the Top*](#python-cheatsheet)\n", |
4362 | 4362 | "\n", |
|
4454 | 4454 | "source": [ |
4455 | 4455 | "[*Return to the Top*](#python-cheatsheet)\n", |
4456 | 4456 | "\n", |
4457 | | - "### Formatted String Literals (Python 3.6+)" |
| 4457 | + "### Formatted String Literals or f-strings (Python 3.6+)" |
4458 | 4458 | ] |
4459 | 4459 | }, |
4460 | 4460 | { |
|
0 commit comments