Skip to content
This repository was archived by the owner on Jul 2, 2024. It is now read-only.

Commit 4f723e8

Browse files
committed
Fixed #66
Signed-off-by: Serhii Horodilov <sgorodil@gmail.com>
1 parent eb094f9 commit 4f723e8

File tree

1 file changed

+18
-15
lines changed

1 file changed

+18
-15
lines changed

src/intro/index.txt

Lines changed: 18 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -84,21 +84,24 @@ meaning by the compiler or interpreter because they designate specific built-in
8484
functionality of the language.
8585
There are only 35 :cite:`docs-python:keywords` in Python and they are:
8686

87-
+--------+----------+---------+----------+--------+
88-
| False | await | else | import | pass |
89-
+--------+----------+---------+----------+--------+
90-
| None | break | except | in | raise |
91-
+--------+----------+---------+----------+--------+
92-
| True | class | finally | is | return |
93-
+--------+----------+---------+----------+--------+
94-
| and | continue | for | lambda | try |
95-
+--------+----------+---------+----------+--------+
96-
| as | def | from | nonlocal | while |
97-
+--------+----------+---------+----------+--------+
98-
| assert | del | global | not | with |
99-
+--------+----------+---------+----------+--------+
100-
| async | elif | if | or | yield |
101-
+--------+----------+---------+----------+--------+
87+
.. table:: Python Keywords
88+
:align: center
89+
90+
+------------+--------------+-------------+--------------+------------+
91+
| ``False`` | ``await`` | ``else`` | ``import`` | ``pass`` |
92+
+------------+--------------+-------------+--------------+------------+
93+
| ``None`` | ``break`` | ``except`` | ``in`` | ``raise`` |
94+
+------------+--------------+-------------+--------------+------------+
95+
| ``True`` | ``class`` | ``finally`` | ``is`` | ``return`` |
96+
+------------+--------------+-------------+--------------+------------+
97+
| ``and`` | ``continue`` | ``for`` | ``lambda`` | ``try`` |
98+
+------------+--------------+-------------+--------------+------------+
99+
| ``as`` | ``def`` | ``from`` | ``nonlocal`` | ``while`` |
100+
+------------+--------------+-------------+--------------+------------+
101+
| ``assert`` | ``del`` | ``global`` | ``not`` | ``with`` |
102+
+------------+--------------+-------------+--------------+------------+
103+
| ``async`` | ``elif`` | ``if`` | ``or`` | ``yield`` |
104+
+------------+--------------+-------------+--------------+------------+
102105

103106
.. rubric:: Python is general purpose
104107

0 commit comments

Comments
 (0)