0% found this document useful (0 votes)
52 views3 pages

Python Exp1 2

The document outlines the Python Programming Lab syllabus for MCA 2nd Year students at Galgotias College of Engineering & Technology. It includes various programming experiments focusing on input/output operations, Python modules, data structures, exception handling, data analysis, and visualization using libraries like matplotlib. Each experiment has specific objectives and problem statements for students to complete.

Uploaded by

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

Python Exp1 2

The document outlines the Python Programming Lab syllabus for MCA 2nd Year students at Galgotias College of Engineering & Technology. It includes various programming experiments focusing on input/output operations, Python modules, data structures, exception handling, data analysis, and visualization using libraries like matplotlib. Each experiment has specific objectives and problem statements for students to complete.

Uploaded by

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

GALGOTIAS COLLEGE OF ENGINEERING &

TECHNOLOGY, GR. NOIDA

Approved by AICTE, New Delhi


Affiliated to Dr. A.P.J. Abdul Kalam Technical
University (AKTU), Lucknow

PYTHON PROGRAMMING LAB (BMC 351)


MCA 2nd Year III Semester

Submitted to: Submitted By:


INDEX
PYTHON PROGRAMMING LAB

Date of Date of
S.No Objective of the Experiment Sign
Implementation Submission

1 Program based on Input Output

Programs based on the concepts of Building


2 Python Modules, Obtaining user Data,
Printing desired output.
Programs based on the concepts of:
3 Conditional if statements, Nested if
statements, Using else if and elif
Programs based on the concepts of Iteration
using different kinds of loops, Usage of
4 Data Structures: Strings, Lists, Tuples, Sets,
Dictionary

Program to create Student Report Card


5
Generator
Program based on the concepts of User-
defined modules and Standard Library
6
(random, numpy, scipy, sys, Math Module,
String Module, List Module).
Program to calculate and display the total
7
bill for items using user input.

8 Program based on Exception Handling

9 Program based on Simple Data Analysis

10 Program based on Pandas.

Weekly Temperature Data Analysis and


11
Visualization

Program to visualize monthly sales data


12
using a bar chart with the matplotlib library.
Program to display the percentage
13 distribution of expenses in different
categories using a matplotlib pie chart.
Program to develop an employee payroll
14
system using single inheritance.

15

16
EXPERIMENT 1

Objective: Program based on Input Output.


Problem Statement:
Write a Python program to demonstrate basic input and output operations by accepting a
user’s name, age, and height, then displaying the collected information using both standard
print statements and formatted output with f-strings.

EXPERIMENT 2
Objective: Programs based on the concepts of Building Python Modules, Obtaining user
data & Printing desired output.
Problem Statement:
The task is to write a Python program using a user-defined module to accept a person’s first
name, last name, and age in years, then display their full name, age in years, and equivalent
age in months.

You might also like