@@ -84,21 +84,24 @@ meaning by the compiler or interpreter because they designate specific built-in
84
84
functionality of the language.
85
85
There are only 35 :cite:`docs-python:keywords` in Python and they are:
86
86
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
+ +------------+--------------+-------------+--------------+------------+
102
105
103
106
.. rubric:: Python is general purpose
104
107
0 commit comments