Python Project
Python Project
Python Project
Python Project..............
TITLE OF PROJECT
MAHARASHTRA STATE
BOARD OF TECHNICAL EDUCATION
CERTIFICATE
This is to certify that -
Place: Chandwad
Date: ………………………
Comments / Suggestions about team work / leadership / inter – personal communication (if any)
Signature
INDEX
1 Part A
2 Part B
2.6 Outputs 10
Annexure-I
d) Easy to develop.
When the semester was started I came to know that we have to develop a
micro – project of the subject Programming with Python and then we started
searching for a topic. After some days I selected the topic Student
Management System which is totally on the basis to Management of students
.This project is fully Basic of Python (simple coding using python) based which
is in the form of Application software. After this we prepared the abstract of
this project.
Then we started collecting data from reference books, some websites and
notes. While collecting the data we understand about different operators,
methods etc. After that we started preparing program using all material that
we have collected. But in between some error came while preparing program
and with the help of our teacher miss Gosavi ma’am it is solved. The project is
successfully developed. And by this project I learned to develop a Basic
python programs.
4.0 Action plan (Sequence and time required for major activity)
2 Preparation of Abstract
3 Collection of data
4 Collection of data
5 Preparation of program
6 Preparation of program
7 Seminar / Presentation
Annexure-II
1.0 Rational(Importance of the project, in about 30 to 50 words. This is a modified version ofthe
earlier one written after the work)
The project file contains a python script . Also, the design of this project is
pretty simple so that the user won’t find any difficulties while working on it.
The Student Management System in Python helps in easy management of
student records.
3.0 Course Outcomes Achieved(Add to the earlier list if more Cos are addressed)
}
def banner():
while(True):
banner()
choice=int(input("Enter your choice:"))
if choice==1:
word=raw_input("Enter the Student to search:")
if word in all_words.keys():
print("{}:{}".format(word,all_words[word]))
else:
print("Word Not found.If you want to add the Student to dictionry
press 2")
elif choice==2:
word=raw_input("Enter the Student to add:")
if word in all_words.keys():
elif choice==3:
word=raw_input("Enter the Student to Update:")
if word in all_words.keys():
meaning=raw_input("Enter the meaning of {}:".format(word))
all_words[word]=meaning
else:
print("{} is not in the dictionary.\n If you want to add the word to
dictionry press 2".format(word))
elif choice==4:
print("Student in the dictionary ")
for key in all_words:
print key,all_words[key]
else:
print("Exit in the Dictionary")
break