Saturday, April 29, 2023

PYTHON(DAY 3) KeyWords

 PYTHON(DAY 3)

Today, we are going to learn about keywords in python.

KeyWords in python

Python’s built-in methods and classes are not the same as the keywords. Built-in methods and classes are constantly present; however, they are not as limited in their application as keywords.

Assigning a particular meaning to Python keywords means you can’t use them for other purposes in our code. You’ll get a message of SyntaxError if you attempt to do the same.

Python contains thirty-three keywords

keywords in python
import keyword
print("The set of keywords in this version is: ")
print( keyword.kwlist )

By using, this kwlist we can display the list of keywords in python

No comments:

Post a Comment

Building Static Website(part6) HTML Lists

  Building Static Website (part6) HTML Lists Today, let us add some lists to our detailed view section by using html lists. Lists: List is a...