0% found this document useful (0 votes)
24 views136 pages

Python UNIT1

Uploaded by

piratespara9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
24 views136 pages

Python UNIT1

Uploaded by

piratespara9
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 136

PLC142 – INTRODUCTION TO PYTHON PROGRAMMING

By,
Downey , A , Elkner & Meyers 2012 : How to think like a computer
scientist : Learning with python

Department of Computer Science


and Engineering
PLC 141

Introduction to Python

Department of Computer Science and Engineering


PLC 141

Introduction to Python
The way of the program: The Python programming
language,
what is a program?
What is debugging? REFER
Syntax errors, Runtime errors, Semantic errors, HANDWRITTEN
NOTES
Experimental debugging.
PLC142
Variables, Expressions, statements

Variables, Expressions and Statements:


Values and data types,
Variables,
Variable names and keywords,
Conditional Statements,
Evaluating expressions,
Operators and operands,
Type converter functions,
Order of perations, Operations on strings,
Input,Composition,
The modulus operator.
PLC142
Variables Expressions statements
PLC142
Variables Expressions statements
PPC
Variables Expressions statements
PLC142
PLC142
Variables Expressions statements
PLC142
Variables Expressions statements
PLC142
Variables Expressions statements
PLC142
Variables Expressions statements
PLC142
Variables Expressions statements
PLC142
Variables Expressions statements
PLC142
Operators and Operands
PLC142
Operators and Operands
PLC142
Operators and Operands
PLC142
Operators and Operands
PLC142
Strings
PLC142
STRINGS
PLC142
COMPOSITION
PLC142
COMPOSITION
PLC142
Comments
PLC142
Comments
PLC142
Comments
PLC142
Comments
THANK YOU

Department of Computer Science and Engineering


PLC142
Modulus Operator
PLC142
Conditional Statements
PLC142
Conditional Statements
First Python control structure, the if statement.
PLC142
Conditional Statements
PLC142
Conditional Statements
PLC142
INdentation
PLC142
Conditional Statements
PLC142
Conditional Statements
PLC142
Conditional Statements – if-else
PLC142
Conditional Statements
PLC142
Conditional Statements – if-else
PLC142
Conditional Statements – if-else
PLC142
Conditional Statements – elif
PLC142
Conditional Statements – elif
PLC142
Conditional Statements – elif
PLC142
Conditional Statements – elif
PLC142
PLC142
PLC142
Conditional Statements – nested if
PLC142
Conditional Statements – nested if
PLC142
Conditional Statements – nested if
PLC142
Conditional Statements – nested if

NO OUTPUT
PLC142
Operators and Operands
PLC142
Input
PLC142
Input
PLC142
Input
PLC142
Input
PLC142
PLC142
PLC142
Iteration

For loop , while loop


Updating Variables
PLC142
Collatz 3n+1 sequence
PLC142
Collatz 3n+1 sequence
PLC142
Collatz 3n+1 sequence
PLC142
Collatz 3n+1 sequence
PLC142
Print() parameters
PLC142
Print() parameters
PLC142
Nested Loops for Nested data
PLC142
Nested Loops for Nested data
PLC142
Nested Loops for Nested data
PLC142
Nested Loops for Nested data
PLC142
Nested Loops for Nested data
PLC142
Nested Loops for Nested data
PLC142
Nested Loops for Nested data
PLC142
Nested Loops for Nested data
PLC142
Nested Loops for Nested data

names = ['Kelly', 'Jessa', 'Emma']


# outer loop
for name in names:
# inner while loop
count = 0
while count < 5:
print(name, end=' ')
# increment counter
count = count + 1
print()
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions
PLC142
Functions – Lambda Functions
PLC142
Functions Lambda Functions
PLC142
Functions - Lambda Functions

Not * its num+4


PLC142
Functions - Lambda Functions
PLC142
Functions - Lambda Functions

20
PLC142
Functions - Lambda Functions

14
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
PLC142
Type Conversion
THANK YOU

You might also like