🌐 AI搜索 & 代理 主页
Skip to content
Merged
Changes from 1 commit
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
Prev Previous commit
Next Next commit
Update stdtypes.rst
  • Loading branch information
ramvikrams committed Dec 30, 2022
commit ea779502e0aa4dc365b022e7201e364a47e31ea7
4 changes: 2 additions & 2 deletions Doc/library/stdtypes.rst
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ These are the Boolean operations, ordered by ascending priority:
| ``x or y`` | if *x* is True, then *x*, else | \(1) |
| | *y* | |
+-------------+---------------------------------+-------+
| ``x and y`` | if *x* is True and *y* is True, | \(2) |
| | then True, else False | |
| ``x and y`` | if *x* and *y* then True, | \(2) |
| | else False | |
+-------------+---------------------------------+-------+
| ``not x`` | if *x* is false, then ``True``, | \(3) |
| | else ``False`` | |
Expand Down