@@ -84,21 +84,24 @@ meaning by the compiler or interpreter because they designate specific built-in
8484functionality of the language.
8585There 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