3. Reserved WordsΒΆ
There are reserved words in Python.
These words cannot be used to declare a variable or function.
In the conversion exercise, the words
float
,input
, andprint
are reserved words.
This program allows you to see a complete list of all reserved words in Python. Execute the program to see them.
Functions like
float()
,input()
, andint()
are not included here, but they are also words that meet the restriction.We can see directives like
if
,else
, andelif
, which we have used before.
You have attempted of activities on this page