Grade 11 Exam  >  Grade 11 Notes  >  Computer Science for Grade 11  >  Python Fundamentals

Python Fundamentals | Computer Science for Grade 11 PDF Download

Basic Elements of Python Program

Every Python program contains some basic elements like character set, tokens, expressions, statements, input & output.

Character Set 

  • A valid set of characters that a language can recognize. Python support Unicode encoding standard and it has following character sets –
  • Letters – A to Z , a – z
  • Digits – 0 to 9
  • Special Symbol – All symbols available on the keyboard.
  • Whitespaces – Blank space, Tabs, Newline, Carriage return
  • Other Characters – All ASCII and UNICODE characters

Tokens 

  • Lexical units or Lexical elements of a program, that is used for the building of statement and instructions in the program called Tokens.

Python has following tokens –

(i) Keyword (ii) Identifier   (iii) Literals (iv) Operators   (v) Punctuators

1. Keywords – 

  • Keywords are the words that convey a special meanings to the python interpreter. These are reserved for special purpose and must not be used as identifier. 
  • Python programming language has following keywords :

Python Fundamentals | Computer Science for Grade 11

For checking / displaying the list of keywords available in Python, you have to write the following two statements:-
>>>import keyword
>>> print(keyword.kwlist)
[‘False’, ‘None’, ‘True’, ‘and’, ‘as’, ‘assert’, ‘break’, ‘class’, ‘continue’, ‘def’, ‘del’, ‘elif’, ‘else’, ‘except’, ‘finally’, ‘for’, ‘from’, ‘global’, ‘if’, ‘import’, ‘in’, ‘is’, ‘lambda’, ‘nonlocal’, ‘not’, ‘or’, ‘pass’, ‘raise’, ‘return’, ‘try’, ‘while’, ‘with’, ‘yield’]
“All these keywords are in small alphabets except for False, None, and True, which start with capital alphabets.

2. Identifier – 
Name given to different parts of a program like variables, objects, class, method, module, list, dictionaries, is called identifier.
Identifier rules of Python –

  • Identifier is the long sequence of letters and digits. Eg. rateofinterest, listofstudents,
  • First character must be letter; the underscore (_). E.g. _sum, sum, _1sum
  • It is case-sensitive. E.g. Sum and sum both are different, due to case sensitivity.
  • Must not be a keyword. if, else, break … not allowed.
  • Can’t be special character except underscore (_) e.g. ^sum, sum#.. not allowed due special character.
  • White space not allowed. E.g. rate of interest, simple interest , not allowed due to space

Do’s :

  • This may be followed by any combination of characters a-z, A-Z, 0-9 or underscore _ .
  • The name should begin with an uppercase or a lowercase alphabet or an underscore sign
  • It can be of any length. However, it is preferred to keep it short and meaningful.

Don’ts :

  • An identifier cannot start with a digit.
  • An identifier cannot contain space.
  • It should not be a keyword or reserved word.
  • We cannot use special symbols like !, @, #, $, %, etc. in identifiers.

Example of Valid Identifiers –

  • Unit_per_day, dayofweek, stud_name, father_name, TotolaMarks, age, amount, a24, invoice_no

Example of Invalid Identifiers-

  • 3rdGraph – Name can’t start with a digit
  • Roll#No – Special symbol # is not allowed
  • First Name –  Spaces are not allowed.
  • D.O.B. –  Special symbol . (dots) are not allowed.
  • while – Keyword not allowed.

3. Literals / Values – 

  • The fixed value or data items used in the program, called Literals. Eg. “Anjeev Singh”, 38, 58690.36, True, False, None, etc.

Python allows five kinds of literals –

  • String Literals,
  • Numeric Literals,
  • Boolean Literals,
  • Special Character None,
  • Literal Collection

a) String Literals – The text written inside the quotes are called String literals. In python, string literals can form by enclosing text in both forms of quotes – single quotes or double quotes or triple quotes.
For example – ‘a’,   “a”,  ‘anjeev kumar singh’,  “anjeev singh academy”.
“”” hello how are
You, I am fine,
Thank you
“””
String types in Python – Python allows two types of strings –
i) Single-line String
ii) Multi-line String
Single Line String – String written inside the single quote (‘ ‘) or double quote (“ “) are called single line string.
Multi-line String – String containing multiple lines called Multi-line string. It can be written in two ways – By adding backslash (\) and By typing text in triple quotes
For Example–
Str1 = “Hello\ # \ (backslash) not counted as character
How are you?\
I am fine.”
Str2 = “””Hello # EOL counted as character
How are You?
I am fine.”””
>>> len(str1)
27
>>> len(str2)
29
b) Numeric Literals – Literals written in the form of number, positive or negative, whole or fractional, called Numeric Literals. Python offers three types of numeric literals –
Integer Literals (int) – integers or ints, are positive or negative whole numbers with no decimal point. Commas cannot appear in integer constant.
a. Decimal Integer: An integer contain digits. E.g. – 1254, +589, -987
b. Octal Integer : Digit starting with 0o (Zero followed letter o) e.g.0o27, 0o35
c. Hexadecimal Integer: Digit preceded by 0x or OX. E.g. 0x19A, 0xFA
Floating Point Literals (float) – real numbers, written with a decimal point with integer and fractional part.
a. Fractional Form – A real number at least must have one digit with the decimal point, either before or after.
Example – 89.6589, 0.56898, 1.265, 25.0
b.    Exponent Form – A real number containing two parts – mantissa and an exponent. The mantissa is followed by a letter E or e and the exponent. Mantissa may be either integer or real number while exponent must be a +ve or –ve integer.
Example – 0.125E25, -14.26e21
Complex Literals (complex) – are of the form of a + b j, where a is the real part of the number and b is the imaginary part. j represents   , which is an imaginary number.
c) Boolean Literals – True (Boolean true) or False (Boolean false) is the two types of Boolean literals in python.  Boolean Literals are – True and False.
d) Special Literals None – None is the special literal in Python. It is used to indicate nothing or no value or absence of value. In case of List, it is used to indicate the end of list.
In Python, None means, “There is no useful information”, or “There is nothing here”.
It display nothing when you write variable name, which containing None, at prompt.
Note : 

  • True , False and None are keywords, but these are start with capital letter, rest all keywords are written in small letters.
  • Boolean literals True, False and Special literal None are built-in constants/literals of Python.

e) Literals Collections –
List  – is a list of comma separated values of any data type between square brackets. It can be changed. E.g.
p = [1, 2, 3, 4] m = [‘a’, ‘e’, ‘i’, ‘o’, ‘u’]
q = [“Anjeev”, “kumar”, “singh”]
r = [“Mohit”, 102, 85.2, True]
Tuple – is a list of comma separated values of any data type between parentheses. It cannot be changed. Eg.
p = (1, 2, 3, 4) m = (‘a’, ‘e’, ‘i’, ‘o’, ‘u’)
q = (“Anjeev”, “kumar”, “singh”)
r = (“Mohit”, 102, 85.2, ‘M’, True)
Dictionary – is an unordered set of comma-separated key : value pairs within curly braces.
rec = {‘name’:“Mohit”, ‘roll’: 102, ‘marks’ : 85.2, ‘sex’: ‘M’, ‘ip’: True}

4. Operators– 
Operators are tokens that perform some operation / calculation / computation, in an expression.
Variables and objects to which the computation or operation is applied, are called operands.
Operator require some operands to work upon

5. Punctuators / Delimiters  – 
Punctuators are symbols that are used in programming languages to organize programming sentence structures.
Most common punctuators of Python programming language are:
( )  [ ] { }  ’  : . ; @  =  += -= *= /= //= %= @= &= |= ^= >>= <<= **=

Variables

  • Variable is an identifier whose value can change.
  • For example variable age can have different value for different person.

Variable Name:

  • Variable name is named memory location, use to refer the memory for processing of values. It should be unique in a program.
  • Value of a variable can be any data type like integer, float, string, Boolean, tuple, list, dictionary, none.

Variable Creation and Assignments
In Python, we can use an assignment statement (with = assignment operator) to create new variables and assign specific values to them.
Syntax : variableName = value
gender = ‘M’
message = “Keep Smiling”
price = 987.9
Variables must always be assigned values before they are used in the program, otherwise it will lead to an error-
NameError: name ‘variableName’ is not defined.
Wherever a variable name occurs in the program, the interpreter replaces it with the value of that particular variable.
Multiple Assignments
Python allows to assign multiple values to multiple variables. All variables and values are separated with comma, and evaluated from left to right and assigned in same order.

Example-
a = b = c = 20 # Assigning same value to multiple variable
a, b, c = 20, 40, 50 # Assigning different values to different variable
a, c = a+b, b+c # First expression will be evaluated then values assigned to the variable
b = 50
b, b = b+2, b+5 # b, b = 50+2, 50+5 => b,b, = 52, 55
print(b) # 55

Note: Suppose you have written multiple values separated by comma in rhs of assignment operator, but did not written multiple variable names in lhs, then Python create a tuple internally,

u = 4, 5 # will not raise an error, it will create a tuple
type(u) # class ‘tuple’
print(u) # shows result (4,5)

Lvalue and Rvalue

  • Lvalues are the objects to which we can assign a value. It can come on the lhs (left hand side) of an assignment operator.
  • Rvalues are the objects / literals / expression that are assigned to lvalues. It can come on the rhs(right hand) of an assignment operator.

Example : l-value = r-value
X = 25 #Here R-value is a literals
Y = X  #Here R-value is a variable or object
Z = X + Y #Here R-value is an expression.

Dynamic Typing

  • As we know that, In Python, the type of variable depend upon the value assigned. Python allows, a variable pointing to a value of a certain type, can be made to point to value of different type. This is called Dynamic Typing.

Example : 
d = 35.65 # ‘d’ starts referring to an float value.
print(type(d)) # <class ‘float’>
d = ‘Anjeev’ # ‘d’ starts referring to a string value.
print(type(d)) # <class ‘str’>
type(variable or object or literal) : type( ) is a built-in-method in python, which returns the type of variable or object or literal.
e.g.
a = ‘hello’
type(a)
<class ‘str’>
b = 5 + 6j
type(b)
<class ‘complex’>

The document Python Fundamentals | Computer Science for Grade 11 is a part of the Grade 11 Course Computer Science for Grade 11.
All you need of Grade 11 at this link: Grade 11
84 videos|19 docs|5 tests

Top Courses for Grade 11

84 videos|19 docs|5 tests
Download as PDF
Explore Courses for Grade 11 exam

Top Courses for Grade 11

Signup for Free!
Signup to see your scores go up within 7 days! Learn & Practice with 1000+ FREE Notes, Videos & Tests.
10M+ students study on EduRev
Related Searches

study material

,

pdf

,

Python Fundamentals | Computer Science for Grade 11

,

Free

,

video lectures

,

shortcuts and tricks

,

Exam

,

mock tests for examination

,

Previous Year Questions with Solutions

,

Important questions

,

Extra Questions

,

Viva Questions

,

past year papers

,

MCQs

,

Objective type Questions

,

Summary

,

Python Fundamentals | Computer Science for Grade 11

,

practice quizzes

,

Sample Paper

,

Semester Notes

,

ppt

,

Python Fundamentals | Computer Science for Grade 11

;