Project
Project
Yash Yadav
Class XII-C
TABLE OF CONTENTS [ T O C ]
1. INTRODUCTION OF PROJECT
4. INPUT/OUTPUT REQUIREMENT
6. DATABASE USED
7. CODING
8. OUTPUT
\
2. OBJECTIVE OF THE PROJECT
This project has a large scope as it has the following features which help in
making it easy to use, understand and modify it:
• Selection Results
4. INPUT/OUTPUT REQUIREMENTS
Input requirements
• Amount to be withdrawal
• Amount to be Deposited
Output requirements
• Balance Of User
HARDWARE REQUIREMENTS:
I.OPERATING SYSTEM: WINDOWS 8 AND ABOVE
SOFTWARE REQUIREMENTS:
• Windows OS
• Python 3.7. x
6. DATABASE USED
The data in the project is stored in the CSV type file. It stores tabular data (data
stored in rows and columns as we see in spreadsheets or database) where
comma delimits the value. Typically, the default delimiter is comma (,) but
modern implementations of CSV files allow you to choose a different delimiter
character.
Each line in a CSV file is a data record. Each record consists of one or more
fields, separated by chosen delimiter.
7. CODING
myreader=csv.reader(csvfile,delimiter=',')
u=input("Enter Account no. ") for row in
myreader: if len(row)!=0:
if(row[1])==u:
pn=input("Enter your pin: ")
if pn==row[2]:
cash=int(input("Enter the amount to withdraw"))
row[3]=int(row[3])-cash
print(row[3])
print("Wrong Pin")
myreader=csv.reader(csvfile,delimiter=',')
u=input("Enter Account no. ") for row in
myreader: if len(row)!=0:
if(row[1])==u:
print(row[3])
print("Wrong Pin")
elif choice==4:
3.For No choice
REFRENCE LINKS
• https://en.wikipedia.org/wiki/Real_estate
• https://www.geeksforgeeks.org
BIBLIOGRAPHY