0% found this document useful (0 votes)
10 views1 page

Practical Assignment Unit 1

The document outlines a practical assignment consisting of six programming tasks in Python. These tasks include creating programs for printing student data, performing arithmetic operations, implementing stack operations, managing a bank account, handling employee data, and developing a number system class with various mathematical functions. Each task emphasizes the use of classes, methods, and user input to achieve specific functionalities.

Uploaded by

ksanjot247
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)
10 views1 page

Practical Assignment Unit 1

The document outlines a practical assignment consisting of six programming tasks in Python. These tasks include creating programs for printing student data, performing arithmetic operations, implementing stack operations, managing a bank account, handling employee data, and developing a number system class with various mathematical functions. Each task emphasizes the use of classes, methods, and user input to achieve specific functionalities.

Uploaded by

ksanjot247
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/ 1

Practical Assignment

1. Write a Basic Python Program to Print Student Data that data Store in
Instance (self) variable without user Input (Data like name, age and mobile
number).
2. Write a Python Program to get two number From user and perform
arithmetic operation using class method.(All arithmetic Operation used
same input value)
3. Create a stack with user input and perform Stack Operations with Menu
(Match case). (Operation like Push, POP, Peek, display and exit).
4. Create a Bank account Program with Private and public function and
perform bank Operations with Menu (Match case). (Note: Balance cannot
store negative value).
5. Create number of employee from employee class and add all object in list.
Store employee data like name designation and salary then create a
function display that print all employee and sum of all employee’s salary.
6. Create a class Name = NumberSystem and add some function like
Fibonacci series, Factorial number , Odd Even number, Prime number and
Armstrong number. Print menu with match case in while loop.

You might also like