From 95595e013de4110b88f2b0efde3d8d96c1d723f2 Mon Sep 17 00:00:00 2001 From: Pavel Tisnovsky Date: Mon, 16 Oct 2023 10:14:11 +0200 Subject: [PATCH] Use links in Czech --- docs/modern_python.md | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/docs/modern_python.md b/docs/modern_python.md index 449c3cf..89b302b 100644 --- a/docs/modern_python.md +++ b/docs/modern_python.md @@ -96,7 +96,7 @@ Python 3.12 klíčové slovo type + sémantika * Přidáno do Pythonu 3.6 * Lze využít společně s původním formátováním -* Prefix f"" +* Prefix `f""` - proto se nazývají f-strings --- @@ -113,7 +113,7 @@ c=a+b print(f"{a}+{b}={c}") ``` -[Source code](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-1.py) +[Zdrojový kód příkladu](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-1.py) --- @@ -128,7 +128,7 @@ b=2 print(f"{a}+{b}={a+b}") ``` -[Source code](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-2.py) +[Zdrojový kód příkladu](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-2.py) --- @@ -144,7 +144,7 @@ print(f"Kladné: {'ano' if a>0 else 'ne'}") print(f"Kladné: {'ano' if b>0 else 'ne'}") ``` -[Source code](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-3.py) +[Zdrojový kód příkladu](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-3.py) --- @@ -156,7 +156,7 @@ x = "Hello world!" print(f"Délka '{x}' je {len(x)} znaků") ``` -[Source code](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-4.py) +[Zdrojový kód příkladu](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-4.py) --- @@ -168,7 +168,7 @@ x = "hello world!" print(f"Zpráva pro vás: '{x.capitalize()}'") ``` -[Source code](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-5.py) +[Zdrojový kód příkladu](https://github.com/tisnik/most-popular-python-libs/blob/master/modern_python/sources//f-string-5.py) ---