Python Fundamental Flashcards
A set of valid Characters that a language can recognise.
Character set.
The smallest element of a Python Program that is meaningful to the interpreter.
Token
The fundamental building blocks of a program which are used to give the name to data items included by the programmer.
Identifiers.
The Predefined reserved words by the programming language that have some special or predefined meanings.
keywords
The Most Obvious Kinds of Constants and the Fixed values that the program may not alter during the execution.
Literals
The literal which is stored in a variable within single quotation mark or double quotation mark is called:
String Literal
Python is what type of language?
Dynamically type language.
How do we get output in Python ?
By Print Statement
Any part in a program which can have a value, is an
Expression e.g. 50, 4*i , x + y / 10,z<30, x–y+10
Logical instruction, which Python interpreter can read and execute are called
Statements
Multi-line Comment starts and ends with what Symbol?
Stars with “ ‘ and ends with “ ‘
Two types of String Supported in Python
(i) Single Line String (ii) Multi line String