Bank Management Python Intro and Index

Download as pdf or txt
Download as pdf or txt
You are on page 1of 8

ACKNOWLEDGEMENT

We undertook this project work, as the part of my XII-INFORMATICS


PRACTICES course. We had tried to apply our best of knowledge and
experience gained during the study and class work experience.
However, developing software system is generally a quite complex
and time-consuming process. It requires a systematic study, insight
vision and professional approach during the design and
development. Moreover, the developer always feel the need, the
help and good wishes of the people near you, who have considerable
experience and idea.
We would like to extend our sincere thanks and gratitude to our
teacher SANDHYA THAKUR. We are very much thankful to our
respected principal sir for giving valuable time and moral support to
develop this project.
We would like to take the opportunity to extend our sincere thanks
and gratitude to our parents for being a source of inspiration and
providing time and freedom to develop this software project.
CLASS: 12TH
KRISHNA AZAD
KARTIKEY DHOUNDIYAL
SHIVANI DANGWAL
INDEX
CONTENT PAGE TEACHER’S
NO SIGNATURE
INTRODUCTION 1-4
WORKING 5
STRUCTURE OF
PROJECT
SOURCE CODE 6-14
(PYTHON+SQL)
OUTPUT 15-20
CONCLUSION 21
BIBLIOHRAPHY 22
INTRODUCTION
• ABOUT PYTHON-
Python is an interpreted, object oriented, high level
programming language.
Its high level built in data structures, combined with dynamic
typing, make it very attractive for rapid application,
development, as well as for use as a scripting or glue
language to connect existing components together. Python in
simple, easy to learn syntax emphasises readability and
therefore reduce cost of program maintenance. Python
supports modules and packages which encourages
programme modularity and code reuse. The python
interpreter and the excessive standard library are available in
source or binary form without charge for all major platforms,
and can be freely distributed.
Often programmers fall in love with python because of the
increase productivity it provides. Since there is no
compilation step, the edit test debug cycle is incredibly fast.
Debugging python programs is easy: a bug or bad input will
never cause a segmentation fault. Instead when the
interpreter discovers an error it raises an exception. When
the programme does not catch the exception the interpreter
prints a stack trace. A source level debugger allows a
inspection of local and global variables, evaluation of
arbitrary expressions setting breakpoints, stepping through
the code a line at a time and so on. The debugger return in
python itself, testifying to python's introspective power. On
the other hand, often the quickest way to debug the
programme is to add a few print statements to the source:
the fast edit test debug cycle makes the simplest approach
very effective.
• ABOUT MYSQL
Structured Query Language (SQL) is a domain specific
language used in programming and designed for managing
data held in a relational database management system.
MYSQL is the fast, easy to use RDBMS being used for many
small and big businesses. MYSQL is developed, marketed and
supported by MYSQL AB, which is a Swedish company.
MYSQL is becoming so popular because of many good
reasons-
> MYSQL is released under an opensource licence. So, you
have nothing to pay to pay to use it.
> It is a very powerful program in its own right. It handles a
large subset of the functionality of the most expensive and
powerful database packages
> It uses a standard form of the well-known SQL data
language.
> MYSQL works on many operating systems and with
many languages including PHP, PERL, C, C++, JAVA etc.
> MYSQL is very friendly to PHP, the most appreciated
languages for web development.
> It supports large databases, up to 50 million rows or
more in a table. The default file size limit for a table is
4GB but you can increase this to a theoretical limit of 8
million terabytes.
• About BANK MANAGEMENT SYSTEM:-

The bank management system (BMS) is a web- based


application used for paying financial institutions for the
services they provide to the bureau of the fiscal service. BMS
also provides analytical tools to review and approve
compensation, budgets and outflows.

Bank management system in based on dot NET and is a major


project for students. It is used to keep the records of clients,
employee etc. in bank. The bank management system is an
application for maintaining a person account in bank. The
system provides the access to the customer to create an
account, deposits withdraw the cash from his a count, also to
view records of all account present.
WORKING STRUCTURE OF
THE PROJECT:-
This project consist of six options as follows:-
• Open new account
• Deposit amount
• Withdraw amount
• Balance enquiry
• Display customer details
• Close an account

You might also like