0% found this document useful (0 votes)
81 views4 pages

Syllabus - Fundamentals of Python Programming

This document outlines the fundamentals of a Python programming course. The course aims to teach students to understand Python data types, decision making statements, functions, file handling, and object-oriented concepts. It includes 18 practical assignments that assess these skills. Some key assignments include using functions, strings, files, classes, inheritance, NumPy, Pandas, and Matplotlib. The course is intended for undergraduate students in their second semester and has 5 outcomes related to various Python programming concepts and applications.

Uploaded by

Manav Kumar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
0% found this document useful (0 votes)
81 views4 pages

Syllabus - Fundamentals of Python Programming

This document outlines the fundamentals of a Python programming course. The course aims to teach students to understand Python data types, decision making statements, functions, file handling, and object-oriented concepts. It includes 18 practical assignments that assess these skills. Some key assignments include using functions, strings, files, classes, inheritance, NumPy, Pandas, and Matplotlib. The course is intended for undergraduate students in their second semester and has 5 outcomes related to various Python programming concepts and applications.

Uploaded by

Manav Kumar
Copyright
© © All Rights Reserved
Available Formats
Download as PDF, TXT or read online on Scribd
Download as pdf or txt
Download as pdf or txt
You are on page 1/ 4

Subject Name: Fundamentals of

School: School of Commuter Python Programming


Science and Engineering Year: 1st Subject Code: UES1004
L-T-P: 3-0-2
Course: B.Tech.(CSE) Semester: 2nd Pre-requisite Fundamentals of
Python Programming / UES1004:
Knowledge of Programming
constructs
Course Outcome

(At the end of the Description


course, a student
will be able to)

C01 Understand the numbers, Math functions, Strings, List, Tuples, and Dictionaries in
Python

C02 Use different Decision-Making statements and Functions

C03 Implement Functions and Strings in Python

C04 Apply File-handling operations and Object-Oriented concepts using Python

C05 Applying Python Packages for data exploration.

Detailed Syllabus (Theory)

Unit Topics CO No. of


No. No. proposed
lectures

1 Introduction: The Programming Cycle for Python, Python IDE, Interacting 1 8


with Python Programs, Elements of Python, Type Conversion.
Basics: Expressions, Assignment Statement, Arithmetic Operators, Operator
Precedence, Boolean Expression.
Python Data Structure: Tuples, Unpacking Sequences, Lists, Mutable
Sequences, Sets, Dictionaries.
2 Conditionals: Conditional statement in Python (if-else statement, its working, 2 8
and execution), Nested-if statement and Elif statement in Python, Expression
Evaluation & Float Representation.
Loops: Purpose and working of loops, while loop, For Loop, Nested Loops,
Break and Continue.
3 Function: Parts of a Function, Execution of a Function, Keyword and Default 3 8
Arguments, Scope Rules, Lambda Function.
Strings: Length of the string and perform Concatenation and Repeat
operations. Indexing and Slicing of Strings, inbuilt functions for strings.
4 File I/O: File input and output operations in Python Programming, Reading, 4 8
and writing text files, Appending to Files – (for text files and CSV files)
Classes – Creating Class and Object, Constructors in Python – Parameterized
and Non-parameterized, Inheritance in Python, Inbuilt class methods and
attributes, Multi-Level and Multiple Inheritance, Method Overriding and Data
Abstraction, Encapsulation and Polymorphism
5 NumPy-Introduction, creating arrays, using arrays and Scalars, Indexing 5 8
Arrays, Array Transposition, Universal Array Function, Array Processing,
Array Input and Output. Pandas: Introduction, uses of Panda, Series in
pandas, Index objects, Reindex, Drop Entry. Plotting and Visualization in
Python: Plotting using Matplotlib library (Histogram, Box Plot, Scatter Plot,
Bar Graphs, Line Graph, etc.)

List of Practical

Practical Practical CO No.


No.

1 Write a Python program to print the documents (syntax, description, etc.) of 1


Python built-in Functions.

2 To write a Python program find the square root of a number. 1

3 To write a Python program exponentiation (power of a number). 1

4 Write a Python program to calculate the length of a string 2

5 To write a Python program find the maximum of a list of numbers. 3

6 To write a Python program to find the most frequent words in a text read from a 4
file

7 To write a Python program to find the most frequent words in a text file. 4

8 Write a Python program to demonstrate various ways of accessing the string- By 3


using Indexing (Both Positive and Negative)
9 Create a dictionary and apply the following Methods: 1) Print the dictionary 1
items 2) access items 3) use get() 4)change values 5) use len()
10 Write a Python program to find the smallest number in a list, and to find largest 1
number in a list
11 (i) Write a Python program to open and write “hello world” into a file? 4

(ii) Write a Python program to write the content “hi python programming” for the
existing file.

12 Write a program to double a given number and to write a python program add 3
two numbers using lambda ()?

13 (i) Write a Python program to display welcome to MRCET by using classes and 4
objects.

(ii) Write a Python program to call data members and function using classes and
objects.

(iii) Write a program to find the sum of two numbers using class and methods.

(iv) Write a program to read 3 subject marks and display pass or failed using
class and object.

14 Implement single and Multiple inheritance concepts using Python. 4

15 Write Python program for addition of two matrix using NumPy library and find 5
transpose of a matrix.

16 Using a NumPy module create an array and check the following: 5

1. Type of array 2. Axes of array

3. Shape of array 4. Type of elements in array

17 Write Python program using panda library for adding new column admission no. 5
to a data frame. Initially, there are 3 columns respectively name, and marks, and
have some dummy data for each column.

18 Use Matplotlib to write python program for draw a graph of two lines 5
intersecting each other while points for line1 at x axis- (1,2,3) and at y-axis at
(2,4,1) and for line2 points are- (1,2,3) at x axis and (4,1,3) at y-axis.

Text Books:
1. Robert Sedgewick, Kevin Wayne, Robert Dondero, ―Introduction to Programming in Python: An
Inter-disciplinary Approach, Pearson India Education Services Pvt. Ltd., 2016.
2. Let Us Python - 4th edition (5 December 2021); BPB PUBLICATION
Reference Books:
3. Python: The Complete Reference, by Martin C. Brown, McGraw Hill Education; Forth edition (20
March 2018)
4. Guido van Rossum and Fred L. Drake Jr, ―An Introduction to Python – Revised and updated for
Python 3.2, Network Theory Ltd., 2011.

You might also like