Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

beginners/functions: Add comment about what kind of operators are listed #25

Merged
merged 1 commit into from
Aug 31, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion lessons/beginners/functions/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,18 @@ Třeba program v jazyce APL laik jednoduše ani nenapíše, ani nepřečte:
Expert v APL může být vysoce produktivní, ale Python se zaměřuje spíš na to,
aby se dal snadno naučit.
A tak používá symboly jen pro ty nejčastější operace.
Operátorů, které využívají symboly, je tak málo, že už jich zhruba půlku znáš!
Operátorů které využívají symboly je tak málo, že už jich zhruba půlku znáš!

> [note]
> Pro zajímavost, tady jsou všechny – i ty co ještě neznáš:
>
> <!--
> “Operátor” není přesně definovaný termín.
> Tenhle seznam by měl odpovídat https://docs.python.org/3/reference/expressions.html#operator-precedence
> (jsou to operátory jako kousky výrazů, ne lexikální jednotky (https://docs.python.org/3/reference/lexical_analysis.html#operators)
> ani “základní” operace (https://docs.python.org/3/library/operator.html).
> Proto tu není =, +=, *= atd., které se ve výrazu použít nedají.
> -->
>
> <div>
> <code>==</code> <code>!=</code>
Expand Down