Computer Science, asked by phdbsnd, 5 hours ago

What is the difference between a keyword and an identifier? Python

Answers

Answered by shreyapandeypersonal
0

Answer:

Keywords are used to recognize the type/kind of entity while an identifier is used to name that entity uniquely. For example, if we write 'int number', where 'int' is a keyword, and 'number' is an identifier, i.e., this statement clearly defines that we define an entity 'number' which is of type int(integer).

Similar questions