What is keywords and identifier in python ????
What is expression and statement in python ???
What is an atom in python ???
What is an algorithm in python ???
Answers
Answered by
7
Answer:
A Python identifier is a name used to identify a variable, function, class, module or other object. An identifier starts with a letter A to Z or a to z or an underscore (_) followed by zero or more letters, underscores and digits (0 to 9).
Answered by
8
Answer:
Keyword: It is the uniquely identified word , which has a pre-defined meaning.
Identifier: It is the name given to any variable, constant,object,etc in the program.
Expression: It is the legal combination of symbols that represents a value.
Statement: It is the programming instruction in that action take place.
Algorithm: It refers to the step-by-step solution to a problem.
Hope this answer helps you ^_^ !
Similar questions