Computer Science, asked by chandan6823, 11 months ago

identifier names can use keyword. ....

Answers

Answered by Anonymous
6
hello there,

menu

home

TUTORIAL

EXAMPLES

search

Python Keywords and Identifier

You will learn about keywords (reserved words in Python) and identifiers (name given to variables, functions etc).

Table of Contents

Python Keywords

Python Identifiers

Rules for writing identifiers

Things to care about

Python Keywords

Keywords are the reserved words in Python.

We cannot use a keyword as variable name, function name or any other identifier. They are used to define the syntax and structure of the Python language.

In Python, keywords are case sensitive.

There are 33 keywords in Python 3.3. This number can vary slightly in course of time.

All the keywords except True, False andNone are in lowercase and they must be written as it is. The list of all the keywords are given below.

hope it help you!
Similar questions