尊敬的 微信汇率:1円 ≈ 0.046166 元 支付宝汇率:1円 ≈ 0.046257元 [退出登录]
SlideShare a Scribd company logo
INDEX
 CERTIFICATE
 ACKNOWLEDGEMENT
 INTRODUCTION
 ABOUT PYTHON
 ABOUT MYSQL
 CODING
 OUTPUT
 REQUIREMENTS
 BIBLIOGRAPHY
CERTIFICATE
THIS IS TO CERTIFY THAT ISHANT KUMAR STUDENT OF CLASS
12 XII ROLL NO: 10 .
HAS PREPARED THIS REPORT ON THE PROJECT ENTITLED
“STUDENTS MARKS MANAGEMENT SYSTEM”.THIS REPORT IS
THE RESULT OF HIS EFFORTS AND ENDEAVORS.THIS REPORT IS
FOUND WORTHY OF ACCEPTANCE AS FINAL REPORT FOR THE
SUBJECT INFORMATICS PRACTICES OF CLASS XII.HE HAS
PREPARED THE REPORT UNDER MY GUIDANCE.
INTERNAL EXAMINER
EXTERNAL EXAMINER
PRINCIPAL SIGNATURE
ACKNOWLEDGEMENT
I THANK MY INFORMATIVE PRACTICES
TEACHER MR. KRISHNENDU CHAKRVORTTY
FOR GUIDANCE AND SUPPORT.I WOULD ALSO
LIKE TO THANKS CBSE FOR GIVING ME THIS
OPPORTUNITY TO UNDERTAKE THIS
PROJECT.AND I ALSO THANKS MY PARENTS
FOR THERE SUPPORT.AND ALSO MY FRIENDS
TO THERE SUPPORT.
What Is Student Record Management
System?
A student record management software is a tool that
tracks and records regular activities of the students in
institutes including attendance, exam performance, and
their behavior. The software can be accessed by
students, teachers, admin and parents with a role-
based login. It collects all the student data along with
their personal information which can be easily searched
and retrieved later on. The software stores years of
data online on a cloud platform.
Features Of Student Record Management
System
 Easy Report Generation-The software helps to
generate reports easily in required formats
 Data Search and Retrieval-The system can help
users to find and retrieve student’s data over a few
clicks
 High Data Storage-The system stores large amounts
of data without hampering its functioning
 Role-Based Access-The software offers role-based
access to the teachers, students, and parents
 Attendance Management-Attendance
Management- It helps to record daily attendance
automatically using a biometric attendance system
 Easy to Use-The system is easy to use and highly
intuitive by all types of individuals
PROBLEM STATEMENT
The student information system is a software application for
schools, colleges and universities to manage student data.
These system are capable of holding students' test scores,
assessment scores etc through an electronic grade book.
They are also used to:
 Hold records of the students' attendance
 Track student schedules
 Handling inquiries from students
 Managing student health records
 Enrolling new students
 Maintaining discipline records
 Managing any other records relevant to students
The systems vary in size. The size of the system is usually
proportionate to the size of the school, college or university.
This is because the number of students, and therefore
records in the system, will be higher in a larger school,
college or university as they are likely to have a large number
of students.
ABOUT PYTHON
Python is a high-level, interpreted, interactive and
object-oriented scripting language. Python is
designed to be highly readable. It uses English
keywords frequently where as other languages
use punctuation, and it has fewer syntactical
constructions than other languages.
 Python is Interpreted − Python is processed at
runtime by the interpreter. You do not need to
compile your program before executing it.
This is similar to PERL and PHP.
 Python is Interactive − You can actually sit at
a Python prompt and interact with the
interpreter directly to write your programs.
 Python is Object-Oriented − Python supports
Object-Oriented style or technique of
programming that encapsulates code within
objects.
 Python is a Beginner's Language − Python is
a great language for the beginner-level
programmers and supports the development
of a wide range of applications from simple
text processing to WWW browsers to games.
FEATURES OF PYTHON
 Easy-to-learn − Python has few keywords, simple
structure, and a clearly defined syntax. This allows the
student to pick up the language quickly.
 Easy-to-read − Python code is more clearly defined and
visible to the eyes.
 Easy-to-maintain − Python's source code is fairly easy-
to-maintain.
 A broad standard library − Python's bulk of the library is
very portable and cross-platform compatible on UNIX,
Windows, and Macintosh.
 Interactive Mode − Python has support for an interactive
mode which allows interactive testing and debugging of
snippets of code.
 Portable − Python can run on a wide variety of hardware
platforms and has the same interface on all platforms.
 Extendable − You can add low-level modules to the
Python interpreter. These modules enable programmers
to add to or customize their tools to be more efficient.
 Databases − Python provides interfaces to all major
commercial databases.
 GUI Programming − Python supports GUI applications
that can be created and ported to many system calls,
libraries and windows systems, such as Windows MFC,
Macintosh, and the X Window system of Unix.
Scalable − Python provides a better structure and support for
large programs than shell scripting
ABOUT MYSQL
MySQL is a 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 open-source license. So you
have nothing to pay to use it.
 MySQL 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.
 MySQL 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 works very quickly and works well even with large
data sets.
 MySQL is very friendly to PHP, the most appreciated
language for web development.
 MySQL 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 (if your operating system
can handle it) to a theoretical limit of 8 million terabytes
(TB).
CODING
def success():
while True:
print("___________________________________________________________
______________")
print("******************************** M A I N M E N U
***********************")
print("___________________________________________________________
______________")
print("1.Add Records")
print("2.Display Rcords")
print("3.Search Record")
print("4.Delete Record")
print("5.Exit")
print("___________________________________________________________
______________")
a=int(input("enter your choice:-"))
if(a==1):
print("___________________________________________________________
__________")
print("*********************** Enter Details of
Student*********************")
print("___________________________________________________________
__________")
R=input("Enter Rollno:")
N=input("Enter Name:")
F=input("Enter Class:")
D=input("Enter Fee=")
mycursor=mydatabase.cursor()
sql="insert into students
(Rollno,Name,Class,Fee)values(%s,%s,%s,%s)"
valu=(R,N,F,D)
mycursor.execute(sql,valu)
mydatabase.commit()
print("tttt Information Saved")
print("___________________________________________________________
____________")
print("___________________________________________________________
____________")
elif(a==2):
mycursor=mydatabase.cursor()
mycursor.execute("select * from students")
myresult=mycursor.fetchall()
t=PrettyTable(['Rollno','Name','Class','fee'])
for Rollno,Name,cls,fee in myresult:
t.add_row([Rollno,Name,cls,fee])
print(t)
elif(a==3):
print("___________________________________________________________
_____________")
print("************************** Search student By
Rollno*********************")
print("___________________________________________________________
_____________")
r_1=input("Enter Student Rollno:")
mycursor=mydatabase.cursor()
mycursor.execute("select * from Students where
rollno="+r_1)
myresult=mycursor.fetchall()
t=PrettyTable(['Rollno','Name','Class','Fees'])
for Rollno,Name,cls,fee in myresult:
t.add_row([Rollno,Name,cls,fee])
print(t)
elif(a==4):
print("___________________________________________________
______________________")
print("****************************** Delete
Record By Roll*********************")
print("___________________________________________________
______________________")
r_1=input("Enter Student Rollno Whose
Information You Want To Dlete=")
mycursor=mydatabase.cursor()
mycursor.execute("delete from students
where Rollno="+r_1)
mydatabase.commit()
print("tttt Record Deleted Successfully!!!")
print("___________________________________________________
______________________")
print("___________________________________________________
______________________")
else:
exit()
from prettytable import PrettyTable
import mysql.connector
mydatabase=mysql.connector.connect(host="localhost",use
r="root",password="ishantkumar")
mycursor=mydatabase.cursor()
mycursor.execute("create database if not exists
studentrecord")
mycursor.execute("use studentrecord")
mycursor.execute("create table if not exists students(Rollno
integer,Name varchar(20),Class varchar(5),fees integer)")
while True:
print("___________________________________________________________
___________________")
print("___________________________________________________________
___________________")
print("******************************* L O G I N
************************************")
print("___________________________________________________
___________________________")
print("___________________________________________________
___________________________")
username=input("Enter Username:-")
password=input("Enter Password:-")
if username=='computer'and password=='ishant':
print("tttt LOGIN SUCCESSFUL___________")
success()
else:
print("**********************************************
********************")
print("tttt INVALID USERNAME AND
PASSWORD!!!!!!!!!!!!")
print("**********************************************
********************")
break
OUTPUT
REQUIREMENTS
HARDWARE REQUIREMENTS
COMPUTER FOR CODING AND TYPING THE
REQUIRE DOCUMENTS OF THE PROJECT.
PRINTER TO PRINT THE REQUIRED
DOCUMENTS OF THE PROJECT.
COMPACT DRIVE.
PROCESSOR: PENTIUM QUAD CORE
RAM:64MB
HARD DISK: 20GB
SOFTWARE REQUIREMENTS
OPERATING SYSTEM: WINDOWS IO
PYTHON 3: FOR EXECUTION OF PROGRAM
MYSQL : FOR STORING DATA IN DATABASE
PYTHON-MYSQL CONNECTOR: FOR DATABASE
CONNECTIVITY
PRETTY TABLE:FOR PRESENTATION OF OUTPUT
BIBLIOGRAPHY
INFORMATICS PRACTICES IN PYTHON
BY-SUMITA ARORA.
HTTP://PYTHON.IN/
THE END

More Related Content

What's hot

Fresher resume-sample1
Fresher resume-sample1Fresher resume-sample1
Fresher resume-sample1
sridevisri
 
Internet of things (iot)
Internet of things (iot)Internet of things (iot)
Internet of things (iot)
sankar s
 
Real Time Water Quality Monitoring and Alert Systems, Applications using OPEX...
Real Time Water Quality Monitoring and Alert Systems, Applications using OPEX...Real Time Water Quality Monitoring and Alert Systems, Applications using OPEX...
Real Time Water Quality Monitoring and Alert Systems, Applications using OPEX...
RekaNext Capital
 
Security in an embedded system
Security in an embedded system Security in an embedded system
Security in an embedded system
UrmilasSrinivasan
 
Wireless Weather Station monitoring System
Wireless Weather Station monitoring SystemWireless Weather Station monitoring System
Wireless Weather Station monitoring System
AlameluPriyadharshini
 
Introducción práctica a JPA2
Introducción práctica a JPA2Introducción práctica a JPA2
Introducción práctica a JPA2
jion1987
 
Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation system
VISHALDWIVEDI27
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
Kamal Acharya
 
15CS81- IoT Module-2
15CS81- IoT Module-215CS81- IoT Module-2
15CS81- IoT Module-2
Syed Mustafa
 
Iot based water quality monitoring system
Iot based water quality monitoring systemIot based water quality monitoring system
Iot based water quality monitoring system
Binayakreddy
 
Resume For Java Devloper
Resume For Java DevloperResume For Java Devloper
Resume For Java Devloper
veerendra_veeru
 
SoSA: A Software Sustainability Assessment Method
SoSA: A Software Sustainability Assessment MethodSoSA: A Software Sustainability Assessment Method
SoSA: A Software Sustainability Assessment Method
Patricia Lago
 
Desktop Support (1)
Desktop Support (1)Desktop Support (1)
Desktop Support (1)
rajesh rathinam
 
Recycler view
Recycler viewRecycler view
Recycler view
Sudhanshu Vohra
 
Internet Of Things
Internet Of ThingsInternet Of Things
Internet Of Things
Rohan M
 
Internet of Things - module 1
Internet of Things -  module 1Internet of Things -  module 1
Internet of Things - module 1
Syed Mustafa
 
Home security automation
Home security automationHome security automation
Home security automation
Isuru Sharminda
 
IoT Based Water Quality Monitoring System for Smart Cities
IoT Based Water Quality Monitoring System for Smart CitiesIoT Based Water Quality Monitoring System for Smart Cities
IoT Based Water Quality Monitoring System for Smart Cities
YogeshIJTSRD
 
Introduction to IoT Architectures and Protocols
Introduction to IoT Architectures and ProtocolsIntroduction to IoT Architectures and Protocols
Introduction to IoT Architectures and Protocols
Abdullah Alfadhly
 
IOT PPT.pptx
IOT PPT.pptxIOT PPT.pptx
IOT PPT.pptx
SiddheshMhatre21
 

What's hot (20)

Fresher resume-sample1
Fresher resume-sample1Fresher resume-sample1
Fresher resume-sample1
 
Internet of things (iot)
Internet of things (iot)Internet of things (iot)
Internet of things (iot)
 
Real Time Water Quality Monitoring and Alert Systems, Applications using OPEX...
Real Time Water Quality Monitoring and Alert Systems, Applications using OPEX...Real Time Water Quality Monitoring and Alert Systems, Applications using OPEX...
Real Time Water Quality Monitoring and Alert Systems, Applications using OPEX...
 
Security in an embedded system
Security in an embedded system Security in an embedded system
Security in an embedded system
 
Wireless Weather Station monitoring System
Wireless Weather Station monitoring SystemWireless Weather Station monitoring System
Wireless Weather Station monitoring System
 
Introducción práctica a JPA2
Introducción práctica a JPA2Introducción práctica a JPA2
Introducción práctica a JPA2
 
Smart irrigation system
Smart irrigation systemSmart irrigation system
Smart irrigation system
 
Online electricity billing project report..pdf
Online electricity billing project report..pdfOnline electricity billing project report..pdf
Online electricity billing project report..pdf
 
15CS81- IoT Module-2
15CS81- IoT Module-215CS81- IoT Module-2
15CS81- IoT Module-2
 
Iot based water quality monitoring system
Iot based water quality monitoring systemIot based water quality monitoring system
Iot based water quality monitoring system
 
Resume For Java Devloper
Resume For Java DevloperResume For Java Devloper
Resume For Java Devloper
 
SoSA: A Software Sustainability Assessment Method
SoSA: A Software Sustainability Assessment MethodSoSA: A Software Sustainability Assessment Method
SoSA: A Software Sustainability Assessment Method
 
Desktop Support (1)
Desktop Support (1)Desktop Support (1)
Desktop Support (1)
 
Recycler view
Recycler viewRecycler view
Recycler view
 
Internet Of Things
Internet Of ThingsInternet Of Things
Internet Of Things
 
Internet of Things - module 1
Internet of Things -  module 1Internet of Things -  module 1
Internet of Things - module 1
 
Home security automation
Home security automationHome security automation
Home security automation
 
IoT Based Water Quality Monitoring System for Smart Cities
IoT Based Water Quality Monitoring System for Smart CitiesIoT Based Water Quality Monitoring System for Smart Cities
IoT Based Water Quality Monitoring System for Smart Cities
 
Introduction to IoT Architectures and Protocols
Introduction to IoT Architectures and ProtocolsIntroduction to IoT Architectures and Protocols
Introduction to IoT Architectures and Protocols
 
IOT PPT.pptx
IOT PPT.pptxIOT PPT.pptx
IOT PPT.pptx
 

Similar to real.pdf

408372362-Student-Result-management-System-project-report-docx.docx
408372362-Student-Result-management-System-project-report-docx.docx408372362-Student-Result-management-System-project-report-docx.docx
408372362-Student-Result-management-System-project-report-docx.docx
santhoshyadav23
 
Bright
BrightBright
Bright copy
Bright   copyBright   copy
Bright copy
Natasha Bains
 
Breast Cancer Prediction.pdf
Breast Cancer Prediction.pdfBreast Cancer Prediction.pdf
Breast Cancer Prediction.pdf
SouravNaga2
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system report
Amit Kulkarni
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system report
Amit Kulkarni
 
LIBARARY MANAGEMENT SYSTEM..docx
LIBARARY MANAGEMENT SYSTEM..docxLIBARARY MANAGEMENT SYSTEM..docx
LIBARARY MANAGEMENT SYSTEM..docx
AmitmAHI4
 
report on internshala python training
 report on internshala python  training  report on internshala python  training
report on internshala python training
surabhimalviya1
 
E library management system
E library management systemE library management system
E library management system
anushyadevi97
 
Class 12th IP project on buisness management
Class 12th IP project on buisness managementClass 12th IP project on buisness management
Class 12th IP project on buisness management
sankhlasheetal3
 
ilovepdf_merged pdfggjhfgyutertyuiuytrsj
ilovepdf_merged pdfggjhfgyutertyuiuytrsjilovepdf_merged pdfggjhfgyutertyuiuytrsj
ilovepdf_merged pdfggjhfgyutertyuiuytrsj
gautamkumar88905
 
IRJET- An Android Platform for Acquainting Differently Abled Students with Wr...
IRJET- An Android Platform for Acquainting Differently Abled Students with Wr...IRJET- An Android Platform for Acquainting Differently Abled Students with Wr...
IRJET- An Android Platform for Acquainting Differently Abled Students with Wr...
IRJET Journal
 
E learning resource Locator Project Report (J2EE)
E learning resource Locator Project Report (J2EE)E learning resource Locator Project Report (J2EE)
E learning resource Locator Project Report (J2EE)
Chiranjeevi Adi
 
student supervision system
student supervision systemstudent supervision system
student supervision system
Dhruti Ranjan Bag
 
Online Attendance System
Online Attendance SystemOnline Attendance System
Online Attendance System
Akash Kr Sinha
 
NEURAL NETWORK BOT
NEURAL NETWORK BOTNEURAL NETWORK BOT
NEURAL NETWORK BOT
IRJET Journal
 
Openeducat Features product brochure | Education Software Development
Openeducat Features product brochure | Education Software DevelopmentOpeneducat Features product brochure | Education Software Development
Openeducat Features product brochure | Education Software Development
Tech Receptives
 
Student assistant
Student assistantStudent assistant
Student assistant
Navaneeth Krishnan
 
Python
PythonPython
Database project edi
Database project ediDatabase project edi
Database project edi
Rey Jefferson
 

Similar to real.pdf (20)

408372362-Student-Result-management-System-project-report-docx.docx
408372362-Student-Result-management-System-project-report-docx.docx408372362-Student-Result-management-System-project-report-docx.docx
408372362-Student-Result-management-System-project-report-docx.docx
 
Bright
BrightBright
Bright
 
Bright copy
Bright   copyBright   copy
Bright copy
 
Breast Cancer Prediction.pdf
Breast Cancer Prediction.pdfBreast Cancer Prediction.pdf
Breast Cancer Prediction.pdf
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system report
 
Office automation system report
Office automation system reportOffice automation system report
Office automation system report
 
LIBARARY MANAGEMENT SYSTEM..docx
LIBARARY MANAGEMENT SYSTEM..docxLIBARARY MANAGEMENT SYSTEM..docx
LIBARARY MANAGEMENT SYSTEM..docx
 
report on internshala python training
 report on internshala python  training  report on internshala python  training
report on internshala python training
 
E library management system
E library management systemE library management system
E library management system
 
Class 12th IP project on buisness management
Class 12th IP project on buisness managementClass 12th IP project on buisness management
Class 12th IP project on buisness management
 
ilovepdf_merged pdfggjhfgyutertyuiuytrsj
ilovepdf_merged pdfggjhfgyutertyuiuytrsjilovepdf_merged pdfggjhfgyutertyuiuytrsj
ilovepdf_merged pdfggjhfgyutertyuiuytrsj
 
IRJET- An Android Platform for Acquainting Differently Abled Students with Wr...
IRJET- An Android Platform for Acquainting Differently Abled Students with Wr...IRJET- An Android Platform for Acquainting Differently Abled Students with Wr...
IRJET- An Android Platform for Acquainting Differently Abled Students with Wr...
 
E learning resource Locator Project Report (J2EE)
E learning resource Locator Project Report (J2EE)E learning resource Locator Project Report (J2EE)
E learning resource Locator Project Report (J2EE)
 
student supervision system
student supervision systemstudent supervision system
student supervision system
 
Online Attendance System
Online Attendance SystemOnline Attendance System
Online Attendance System
 
NEURAL NETWORK BOT
NEURAL NETWORK BOTNEURAL NETWORK BOT
NEURAL NETWORK BOT
 
Openeducat Features product brochure | Education Software Development
Openeducat Features product brochure | Education Software DevelopmentOpeneducat Features product brochure | Education Software Development
Openeducat Features product brochure | Education Software Development
 
Student assistant
Student assistantStudent assistant
Student assistant
 
Python
PythonPython
Python
 
Database project edi
Database project ediDatabase project edi
Database project edi
 

Recently uploaded

一比一原版(brunel毕业证书)布鲁内尔大学毕业证如何办理
一比一原版(brunel毕业证书)布鲁内尔大学毕业证如何办理一比一原版(brunel毕业证书)布鲁内尔大学毕业证如何办理
一比一原版(brunel毕业证书)布鲁内尔大学毕业证如何办理
aprhf21y
 
🔥Mumbai Call Girls Contact Number 🔝👉 9833363713 👈🔝High Calass Call Girl Mumbai
🔥Mumbai Call Girls Contact Number 🔝👉 9833363713 👈🔝High Calass Call Girl Mumbai🔥Mumbai Call Girls Contact Number 🔝👉 9833363713 👈🔝High Calass Call Girl Mumbai
🔥Mumbai Call Girls Contact Number 🔝👉 9833363713 👈🔝High Calass Call Girl Mumbai
Sifa Khan#i11
 
Call Girls sonal ☎️ 8445551418 ☎️ ( jaipur ) ...
Call Girls sonal ☎️ 8445551418 ☎️ ( jaipur ) ...Call Girls sonal ☎️ 8445551418 ☎️ ( jaipur ) ...
Call Girls sonal ☎️ 8445551418 ☎️ ( jaipur ) ...
shardda patel
 
Update 33 models(General Diode ) in SPICE PARK(JUN2024)
Update 33 models(General Diode ) in SPICE PARK(JUN2024)Update 33 models(General Diode ) in SPICE PARK(JUN2024)
Update 33 models(General Diode ) in SPICE PARK(JUN2024)
Tsuyoshi Horigome
 
Call Girls Jaipur Diya 👉 ☎️ 8445551418 Night Call Girls Jaipur
Call Girls  Jaipur Diya 👉 ☎️ 8445551418 Night Call Girls JaipurCall Girls  Jaipur Diya 👉 ☎️ 8445551418 Night Call Girls Jaipur
Call Girls Jaipur Diya 👉 ☎️ 8445551418 Night Call Girls Jaipur
shardda patel
 
Ways to keep strategy alive throughout a project, in the smaller moments
Ways to keep strategy alive throughout a project, in the smaller momentsWays to keep strategy alive throughout a project, in the smaller moments
Ways to keep strategy alive throughout a project, in the smaller moments
Ariana Koblitz
 
🔥Premium Call Girls In Bangalore 💯Call Us 🔝 9352988975 🔝💃Top Class Call Girl ...
🔥Premium Call Girls In Bangalore 💯Call Us 🔝 9352988975 🔝💃Top Class Call Girl ...🔥Premium Call Girls In Bangalore 💯Call Us 🔝 9352988975 🔝💃Top Class Call Girl ...
🔥Premium Call Girls In Bangalore 💯Call Us 🔝 9352988975 🔝💃Top Class Call Girl ...
Sanjna Singh
 
Call Girls Agra ☎️ +91-7426014248 😍 Agra Call Girl Beauty Girls Agra Escort
Call Girls Agra ☎️ +91-7426014248 😍 Agra Call Girl Beauty Girls Agra EscortCall Girls Agra ☎️ +91-7426014248 😍 Agra Call Girl Beauty Girls Agra Escort
Call Girls Agra ☎️ +91-7426014248 😍 Agra Call Girl Beauty Girls Agra Escort
devkumar5467878
 
VIP Call Girls Jaipur Riddhi 8445551418 Independent Escort Service Jaipur
VIP Call Girls Jaipur Riddhi 8445551418 Independent Escort Service JaipurVIP Call Girls Jaipur Riddhi 8445551418 Independent Escort Service Jaipur
VIP Call Girls Jaipur Riddhi 8445551418 Independent Escort Service Jaipur
vipgirlschennai
 
SPICE PARK JUN2024 ( 6,826 SPICE Models )
SPICE PARK JUN2024 ( 6,826 SPICE Models )SPICE PARK JUN2024 ( 6,826 SPICE Models )
SPICE PARK JUN2024 ( 6,826 SPICE Models )
Tsuyoshi Horigome
 
Call Girls in Kolkata (7426014248) call me [🔝Kolkata🔝] Escort In Kolkata serv...
Call Girls in Kolkata (7426014248) call me [🔝Kolkata🔝] Escort In Kolkata serv...Call Girls in Kolkata (7426014248) call me [🔝Kolkata🔝] Escort In Kolkata serv...
Call Girls in Kolkata (7426014248) call me [🔝Kolkata🔝] Escort In Kolkata serv...
zoyat9250
 
一比一原版(范莎毕业证书)加拿大范莎学院毕业证如何办理
一比一原版(范莎毕业证书)加拿大范莎学院毕业证如何办理一比一原版(范莎毕业证书)加拿大范莎学院毕业证如何办理
一比一原版(范莎毕业证书)加拿大范莎学院毕业证如何办理
0dtluq4l
 
Call Girls In Pune ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Services Provid...
Call Girls In Pune ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Services Provid...Call Girls In Pune ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Services Provid...
Call Girls In Pune ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Services Provid...
Banerescorts
 
Call Girls In Thane ( Mumbai ) 💯Call Us 🔝 9967584737 🔝💃Top Class Call Girl Se...
Call Girls In Thane ( Mumbai ) 💯Call Us 🔝 9967584737 🔝💃Top Class Call Girl Se...Call Girls In Thane ( Mumbai ) 💯Call Us 🔝 9967584737 🔝💃Top Class Call Girl Se...
Call Girls In Thane ( Mumbai ) 💯Call Us 🔝 9967584737 🔝💃Top Class Call Girl Se...
pr971917
 
Menus_UXPA2024_Battle-Sengers_20240625.pdf
Menus_UXPA2024_Battle-Sengers_20240625.pdfMenus_UXPA2024_Battle-Sengers_20240625.pdf
Menus_UXPA2024_Battle-Sengers_20240625.pdf
Design for Context
 
Call Girls In Jaipur {8445551418} ❤️VVIP JIYA Call Girl in Jaipur Rajasthan
Call Girls In Jaipur {8445551418} ❤️VVIP JIYA Call Girl in Jaipur RajasthanCall Girls In Jaipur {8445551418} ❤️VVIP JIYA Call Girl in Jaipur Rajasthan
Call Girls In Jaipur {8445551418} ❤️VVIP JIYA Call Girl in Jaipur Rajasthan
ishu38418
 
Call Girls in Madurai (7426014248) call me [🔝Coimbatore🔝] Escort In Madurai s...
Call Girls in Madurai (7426014248) call me [🔝Coimbatore🔝] Escort In Madurai s...Call Girls in Madurai (7426014248) call me [🔝Coimbatore🔝] Escort In Madurai s...
Call Girls in Madurai (7426014248) call me [🔝Coimbatore🔝] Escort In Madurai s...
mutakeem767
 
💕KRITIKA KAPOOR💕Kissing Fucking Call Girls Jaipur ↘️8445551418↙️One Night Sta...
💕KRITIKA KAPOOR💕Kissing Fucking Call Girls Jaipur ↘️8445551418↙️One Night Sta...💕KRITIKA KAPOOR💕Kissing Fucking Call Girls Jaipur ↘️8445551418↙️One Night Sta...
💕KRITIKA KAPOOR💕Kissing Fucking Call Girls Jaipur ↘️8445551418↙️One Night Sta...
radika pandey
 
一比一原版美国加州大学戴维斯分校毕业证(ucdavis学位证)如何办理
一比一原版美国加州大学戴维斯分校毕业证(ucdavis学位证)如何办理一比一原版美国加州大学戴维斯分校毕业证(ucdavis学位证)如何办理
一比一原版美国加州大学戴维斯分校毕业证(ucdavis学位证)如何办理
twqryq79
 
一比一原版加拿大瑞尔森大学毕业证如何办理
一比一原版加拿大瑞尔森大学毕业证如何办理一比一原版加拿大瑞尔森大学毕业证如何办理
一比一原版加拿大瑞尔森大学毕业证如何办理
oydykuz
 

Recently uploaded (20)

一比一原版(brunel毕业证书)布鲁内尔大学毕业证如何办理
一比一原版(brunel毕业证书)布鲁内尔大学毕业证如何办理一比一原版(brunel毕业证书)布鲁内尔大学毕业证如何办理
一比一原版(brunel毕业证书)布鲁内尔大学毕业证如何办理
 
🔥Mumbai Call Girls Contact Number 🔝👉 9833363713 👈🔝High Calass Call Girl Mumbai
🔥Mumbai Call Girls Contact Number 🔝👉 9833363713 👈🔝High Calass Call Girl Mumbai🔥Mumbai Call Girls Contact Number 🔝👉 9833363713 👈🔝High Calass Call Girl Mumbai
🔥Mumbai Call Girls Contact Number 🔝👉 9833363713 👈🔝High Calass Call Girl Mumbai
 
Call Girls sonal ☎️ 8445551418 ☎️ ( jaipur ) ...
Call Girls sonal ☎️ 8445551418 ☎️ ( jaipur ) ...Call Girls sonal ☎️ 8445551418 ☎️ ( jaipur ) ...
Call Girls sonal ☎️ 8445551418 ☎️ ( jaipur ) ...
 
Update 33 models(General Diode ) in SPICE PARK(JUN2024)
Update 33 models(General Diode ) in SPICE PARK(JUN2024)Update 33 models(General Diode ) in SPICE PARK(JUN2024)
Update 33 models(General Diode ) in SPICE PARK(JUN2024)
 
Call Girls Jaipur Diya 👉 ☎️ 8445551418 Night Call Girls Jaipur
Call Girls  Jaipur Diya 👉 ☎️ 8445551418 Night Call Girls JaipurCall Girls  Jaipur Diya 👉 ☎️ 8445551418 Night Call Girls Jaipur
Call Girls Jaipur Diya 👉 ☎️ 8445551418 Night Call Girls Jaipur
 
Ways to keep strategy alive throughout a project, in the smaller moments
Ways to keep strategy alive throughout a project, in the smaller momentsWays to keep strategy alive throughout a project, in the smaller moments
Ways to keep strategy alive throughout a project, in the smaller moments
 
🔥Premium Call Girls In Bangalore 💯Call Us 🔝 9352988975 🔝💃Top Class Call Girl ...
🔥Premium Call Girls In Bangalore 💯Call Us 🔝 9352988975 🔝💃Top Class Call Girl ...🔥Premium Call Girls In Bangalore 💯Call Us 🔝 9352988975 🔝💃Top Class Call Girl ...
🔥Premium Call Girls In Bangalore 💯Call Us 🔝 9352988975 🔝💃Top Class Call Girl ...
 
Call Girls Agra ☎️ +91-7426014248 😍 Agra Call Girl Beauty Girls Agra Escort
Call Girls Agra ☎️ +91-7426014248 😍 Agra Call Girl Beauty Girls Agra EscortCall Girls Agra ☎️ +91-7426014248 😍 Agra Call Girl Beauty Girls Agra Escort
Call Girls Agra ☎️ +91-7426014248 😍 Agra Call Girl Beauty Girls Agra Escort
 
VIP Call Girls Jaipur Riddhi 8445551418 Independent Escort Service Jaipur
VIP Call Girls Jaipur Riddhi 8445551418 Independent Escort Service JaipurVIP Call Girls Jaipur Riddhi 8445551418 Independent Escort Service Jaipur
VIP Call Girls Jaipur Riddhi 8445551418 Independent Escort Service Jaipur
 
SPICE PARK JUN2024 ( 6,826 SPICE Models )
SPICE PARK JUN2024 ( 6,826 SPICE Models )SPICE PARK JUN2024 ( 6,826 SPICE Models )
SPICE PARK JUN2024 ( 6,826 SPICE Models )
 
Call Girls in Kolkata (7426014248) call me [🔝Kolkata🔝] Escort In Kolkata serv...
Call Girls in Kolkata (7426014248) call me [🔝Kolkata🔝] Escort In Kolkata serv...Call Girls in Kolkata (7426014248) call me [🔝Kolkata🔝] Escort In Kolkata serv...
Call Girls in Kolkata (7426014248) call me [🔝Kolkata🔝] Escort In Kolkata serv...
 
一比一原版(范莎毕业证书)加拿大范莎学院毕业证如何办理
一比一原版(范莎毕业证书)加拿大范莎学院毕业证如何办理一比一原版(范莎毕业证书)加拿大范莎学院毕业证如何办理
一比一原版(范莎毕业证书)加拿大范莎学院毕业证如何办理
 
Call Girls In Pune ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Services Provid...
Call Girls In Pune ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Services Provid...Call Girls In Pune ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Services Provid...
Call Girls In Pune ✔ 7737669865 ✔ Hi I Am Divya Vip Call Girl Services Provid...
 
Call Girls In Thane ( Mumbai ) 💯Call Us 🔝 9967584737 🔝💃Top Class Call Girl Se...
Call Girls In Thane ( Mumbai ) 💯Call Us 🔝 9967584737 🔝💃Top Class Call Girl Se...Call Girls In Thane ( Mumbai ) 💯Call Us 🔝 9967584737 🔝💃Top Class Call Girl Se...
Call Girls In Thane ( Mumbai ) 💯Call Us 🔝 9967584737 🔝💃Top Class Call Girl Se...
 
Menus_UXPA2024_Battle-Sengers_20240625.pdf
Menus_UXPA2024_Battle-Sengers_20240625.pdfMenus_UXPA2024_Battle-Sengers_20240625.pdf
Menus_UXPA2024_Battle-Sengers_20240625.pdf
 
Call Girls In Jaipur {8445551418} ❤️VVIP JIYA Call Girl in Jaipur Rajasthan
Call Girls In Jaipur {8445551418} ❤️VVIP JIYA Call Girl in Jaipur RajasthanCall Girls In Jaipur {8445551418} ❤️VVIP JIYA Call Girl in Jaipur Rajasthan
Call Girls In Jaipur {8445551418} ❤️VVIP JIYA Call Girl in Jaipur Rajasthan
 
Call Girls in Madurai (7426014248) call me [🔝Coimbatore🔝] Escort In Madurai s...
Call Girls in Madurai (7426014248) call me [🔝Coimbatore🔝] Escort In Madurai s...Call Girls in Madurai (7426014248) call me [🔝Coimbatore🔝] Escort In Madurai s...
Call Girls in Madurai (7426014248) call me [🔝Coimbatore🔝] Escort In Madurai s...
 
💕KRITIKA KAPOOR💕Kissing Fucking Call Girls Jaipur ↘️8445551418↙️One Night Sta...
💕KRITIKA KAPOOR💕Kissing Fucking Call Girls Jaipur ↘️8445551418↙️One Night Sta...💕KRITIKA KAPOOR💕Kissing Fucking Call Girls Jaipur ↘️8445551418↙️One Night Sta...
💕KRITIKA KAPOOR💕Kissing Fucking Call Girls Jaipur ↘️8445551418↙️One Night Sta...
 
一比一原版美国加州大学戴维斯分校毕业证(ucdavis学位证)如何办理
一比一原版美国加州大学戴维斯分校毕业证(ucdavis学位证)如何办理一比一原版美国加州大学戴维斯分校毕业证(ucdavis学位证)如何办理
一比一原版美国加州大学戴维斯分校毕业证(ucdavis学位证)如何办理
 
一比一原版加拿大瑞尔森大学毕业证如何办理
一比一原版加拿大瑞尔森大学毕业证如何办理一比一原版加拿大瑞尔森大学毕业证如何办理
一比一原版加拿大瑞尔森大学毕业证如何办理
 

real.pdf

  • 1.
  • 2. INDEX  CERTIFICATE  ACKNOWLEDGEMENT  INTRODUCTION  ABOUT PYTHON  ABOUT MYSQL  CODING  OUTPUT  REQUIREMENTS  BIBLIOGRAPHY
  • 3. CERTIFICATE THIS IS TO CERTIFY THAT ISHANT KUMAR STUDENT OF CLASS 12 XII ROLL NO: 10 . HAS PREPARED THIS REPORT ON THE PROJECT ENTITLED “STUDENTS MARKS MANAGEMENT SYSTEM”.THIS REPORT IS THE RESULT OF HIS EFFORTS AND ENDEAVORS.THIS REPORT IS FOUND WORTHY OF ACCEPTANCE AS FINAL REPORT FOR THE SUBJECT INFORMATICS PRACTICES OF CLASS XII.HE HAS PREPARED THE REPORT UNDER MY GUIDANCE. INTERNAL EXAMINER EXTERNAL EXAMINER PRINCIPAL SIGNATURE
  • 4. ACKNOWLEDGEMENT I THANK MY INFORMATIVE PRACTICES TEACHER MR. KRISHNENDU CHAKRVORTTY FOR GUIDANCE AND SUPPORT.I WOULD ALSO LIKE TO THANKS CBSE FOR GIVING ME THIS OPPORTUNITY TO UNDERTAKE THIS PROJECT.AND I ALSO THANKS MY PARENTS FOR THERE SUPPORT.AND ALSO MY FRIENDS TO THERE SUPPORT.
  • 5. What Is Student Record Management System? A student record management software is a tool that tracks and records regular activities of the students in institutes including attendance, exam performance, and their behavior. The software can be accessed by students, teachers, admin and parents with a role- based login. It collects all the student data along with their personal information which can be easily searched and retrieved later on. The software stores years of data online on a cloud platform. Features Of Student Record Management System  Easy Report Generation-The software helps to generate reports easily in required formats  Data Search and Retrieval-The system can help users to find and retrieve student’s data over a few clicks  High Data Storage-The system stores large amounts of data without hampering its functioning  Role-Based Access-The software offers role-based access to the teachers, students, and parents
  • 6.  Attendance Management-Attendance Management- It helps to record daily attendance automatically using a biometric attendance system  Easy to Use-The system is easy to use and highly intuitive by all types of individuals PROBLEM STATEMENT The student information system is a software application for schools, colleges and universities to manage student data. These system are capable of holding students' test scores, assessment scores etc through an electronic grade book. They are also used to:  Hold records of the students' attendance  Track student schedules  Handling inquiries from students  Managing student health records  Enrolling new students  Maintaining discipline records  Managing any other records relevant to students The systems vary in size. The size of the system is usually proportionate to the size of the school, college or university. This is because the number of students, and therefore records in the system, will be higher in a larger school, college or university as they are likely to have a large number of students.
  • 7. ABOUT PYTHON Python is a high-level, interpreted, interactive and object-oriented scripting language. Python is designed to be highly readable. It uses English keywords frequently where as other languages use punctuation, and it has fewer syntactical constructions than other languages.  Python is Interpreted − Python is processed at runtime by the interpreter. You do not need to compile your program before executing it. This is similar to PERL and PHP.  Python is Interactive − You can actually sit at a Python prompt and interact with the interpreter directly to write your programs.  Python is Object-Oriented − Python supports Object-Oriented style or technique of programming that encapsulates code within objects.  Python is a Beginner's Language − Python is a great language for the beginner-level programmers and supports the development of a wide range of applications from simple text processing to WWW browsers to games.
  • 8. FEATURES OF PYTHON  Easy-to-learn − Python has few keywords, simple structure, and a clearly defined syntax. This allows the student to pick up the language quickly.  Easy-to-read − Python code is more clearly defined and visible to the eyes.  Easy-to-maintain − Python's source code is fairly easy- to-maintain.  A broad standard library − Python's bulk of the library is very portable and cross-platform compatible on UNIX, Windows, and Macintosh.  Interactive Mode − Python has support for an interactive mode which allows interactive testing and debugging of snippets of code.  Portable − Python can run on a wide variety of hardware platforms and has the same interface on all platforms.  Extendable − You can add low-level modules to the Python interpreter. These modules enable programmers to add to or customize their tools to be more efficient.  Databases − Python provides interfaces to all major commercial databases.  GUI Programming − Python supports GUI applications that can be created and ported to many system calls, libraries and windows systems, such as Windows MFC, Macintosh, and the X Window system of Unix. Scalable − Python provides a better structure and support for large programs than shell scripting
  • 9. ABOUT MYSQL MySQL is a 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 open-source license. So you have nothing to pay to use it.  MySQL 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.  MySQL 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 works very quickly and works well even with large data sets.  MySQL is very friendly to PHP, the most appreciated language for web development.  MySQL 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 (if your operating system can handle it) to a theoretical limit of 8 million terabytes (TB). CODING def success():
  • 10. while True: print("___________________________________________________________ ______________") print("******************************** M A I N M E N U ***********************") print("___________________________________________________________ ______________") print("1.Add Records") print("2.Display Rcords") print("3.Search Record") print("4.Delete Record") print("5.Exit") print("___________________________________________________________ ______________") a=int(input("enter your choice:-")) if(a==1): print("___________________________________________________________ __________") print("*********************** Enter Details of Student*********************")
  • 11. print("___________________________________________________________ __________") R=input("Enter Rollno:") N=input("Enter Name:") F=input("Enter Class:") D=input("Enter Fee=") mycursor=mydatabase.cursor() sql="insert into students (Rollno,Name,Class,Fee)values(%s,%s,%s,%s)" valu=(R,N,F,D) mycursor.execute(sql,valu) mydatabase.commit() print("tttt Information Saved") print("___________________________________________________________ ____________") print("___________________________________________________________ ____________") elif(a==2): mycursor=mydatabase.cursor() mycursor.execute("select * from students")
  • 12. myresult=mycursor.fetchall() t=PrettyTable(['Rollno','Name','Class','fee']) for Rollno,Name,cls,fee in myresult: t.add_row([Rollno,Name,cls,fee]) print(t) elif(a==3): print("___________________________________________________________ _____________") print("************************** Search student By Rollno*********************") print("___________________________________________________________ _____________") r_1=input("Enter Student Rollno:") mycursor=mydatabase.cursor() mycursor.execute("select * from Students where rollno="+r_1) myresult=mycursor.fetchall() t=PrettyTable(['Rollno','Name','Class','Fees']) for Rollno,Name,cls,fee in myresult: t.add_row([Rollno,Name,cls,fee])
  • 13. print(t) elif(a==4): print("___________________________________________________ ______________________") print("****************************** Delete Record By Roll*********************") print("___________________________________________________ ______________________") r_1=input("Enter Student Rollno Whose Information You Want To Dlete=") mycursor=mydatabase.cursor() mycursor.execute("delete from students where Rollno="+r_1) mydatabase.commit() print("tttt Record Deleted Successfully!!!") print("___________________________________________________ ______________________") print("___________________________________________________ ______________________")
  • 14. else: exit() from prettytable import PrettyTable import mysql.connector mydatabase=mysql.connector.connect(host="localhost",use r="root",password="ishantkumar") mycursor=mydatabase.cursor() mycursor.execute("create database if not exists studentrecord") mycursor.execute("use studentrecord") mycursor.execute("create table if not exists students(Rollno integer,Name varchar(20),Class varchar(5),fees integer)") while True: print("___________________________________________________________ ___________________") print("___________________________________________________________ ___________________") print("******************************* L O G I N ************************************")
  • 15. print("___________________________________________________ ___________________________") print("___________________________________________________ ___________________________") username=input("Enter Username:-") password=input("Enter Password:-") if username=='computer'and password=='ishant': print("tttt LOGIN SUCCESSFUL___________") success() else: print("********************************************** ********************") print("tttt INVALID USERNAME AND PASSWORD!!!!!!!!!!!!") print("********************************************** ********************") break
  • 17.
  • 18. REQUIREMENTS HARDWARE REQUIREMENTS COMPUTER FOR CODING AND TYPING THE REQUIRE DOCUMENTS OF THE PROJECT. PRINTER TO PRINT THE REQUIRED DOCUMENTS OF THE PROJECT. COMPACT DRIVE. PROCESSOR: PENTIUM QUAD CORE RAM:64MB HARD DISK: 20GB SOFTWARE REQUIREMENTS OPERATING SYSTEM: WINDOWS IO PYTHON 3: FOR EXECUTION OF PROGRAM MYSQL : FOR STORING DATA IN DATABASE PYTHON-MYSQL CONNECTOR: FOR DATABASE CONNECTIVITY PRETTY TABLE:FOR PRESENTATION OF OUTPUT
  • 19. BIBLIOGRAPHY INFORMATICS PRACTICES IN PYTHON BY-SUMITA ARORA. HTTP://PYTHON.IN/ THE END
  翻译: