YUG
YUG
Principal
It is with pleasure that I acknowledge my sincere gratitude
to our teacher, MRS. SONIA CHOUDHARY who taught and
undertook the responsibility of teaching the subject computer
science. I have been greatly benefited from her classes.
I am especially indebted to our Principal MRS. A.P.
KACHCHAP who has always been a source of encouragement
and support and without whose inspiration this project would
not have been a successful I would like to place on record
heartfelt thanks to her.
Finally, I would like to express my sincere appreciation for all
the other students for my batch their friendship & the fine
times that we all shared together.
YUG CHAVDA
INTRODUCTION TO PYTHON
• Web development
• Automation or scripting
• Everyday tasks
History of Python:
Python is a widely used general-purpose, high-level
programming language. It was initially designed by Guido
van Rossum in 1991 and developed by Python Software
Foundation. It was mainly developed for emphasis on code
readability, and its syntax allows programmers to express
concepts in fewer lines of code.
INTRODUCTION TO MYSQL
MySQL is a relational database management system
(RDBMS) developed by Oracle that is based on structured
query language (SQL).
A database is a structured collection of data. It may be anything
from a simple shopping list to a picture gallery or a place to hold
the vast amounts of information in a corporate network. In
particular, a relational database is a digital store collecting data
and organizing it according to the relational model. In this
model, tables consist of rows and columns, and relationships
between data elements all follow a strict logical structure. An
RDBMS is simply the set of software tools used to actually
implement, manage, and query such a database
A database is a structured collection of data. It may be anything
from a simple shopping list to a picture gallery or the vast amounts
of information in a corporate network. To add, access, and process
data stored in a computer database, you need a database
management system such as MySQL Server. Since computers are
very good at handling large amounts of data, database
management systems play a central role in computing, as
standalone utilities, or as parts of other applications
INTRODUCTION TO THE PROJECT
The cyber cafe management system is developed with a
no cyber cafes.
SYSTEM REQUIREMENTS
HARDWARE REQUIREMENT:
SOFTWARE REQUIREMENT:
➢ Windows 7 or higher
➢ My-SQL server 5.5 or higher (as backend)
➢ Python idle 3.6 or higher or spyder (as
frontend).
Time varchar(15),
Amount int(10));
CREATE TABLE Bill(
Name varchar(50),
Time varchar(10),
Total int(10));
import mysql.connector as sql
if conn.is_connected():
print("successfully connected")
c1=conn.cursor()
int(10),Email_ID varchar(30))')
varchar(30),Amount_charged int)')
print("Table created")
BOOKS: