0% found this document useful (1 vote)
568 views24 pages

Presentation of Computer Institute Management System

This document contains Python code for creating a database and table to manage student enrollments for courses at a computer institute. It includes code to create a menu system that allows users to enroll students, edit or delete enrollments, and view enrollment details. The menu provides options for students to enroll in courses and administrators to modify enrollments by deleting, editing names or courses. It also displays enrolled student details by admission number, name, and selected course.

Uploaded by

Muthumeenatchi U
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
0% found this document useful (1 vote)
568 views24 pages

Presentation of Computer Institute Management System

This document contains Python code for creating a database and table to manage student enrollments for courses at a computer institute. It includes code to create a menu system that allows users to enroll students, edit or delete enrollments, and view enrollment details. The menu provides options for students to enroll in courses and administrators to modify enrollments by deleting, editing names or courses. It also displays enrolled student details by admission number, name, and selected course.

Uploaded by

Muthumeenatchi U
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PPTX, PDF, TXT or read online on Scribd
You are on page 1/ 24

COMPUTER INSTITUTE

MANAGEMENT SYSTEM
OUTPUTS OF COMPUTER INSTITUTE
MANAGEMENT SYSTEM
CIMS_CREATE_DATABASE.PY
CODING
import mysql.connector as sql
conn=sql.connect(host='localhost',user='root',passwd='manager')
if conn.is_connected():
print("Successfully Connected")
c1=conn.cursor()
c1.execute('create database cims')
print ('Database created')
CIMS_CREATE_TABLE.PY
CODING
import mysql.connector as sql
conn=sql.connect(host='localhost',user='root',passwd='manager',da
tabase='cims')
if conn.is_connected():
print("Successfully Connected")
c1=conn.cursor()
c1.execute('create table candidate_details(adm_no int primary key,
candidate_name varchar(50), course_select varchar(20))')
print ('Table created')
CIMS_MENU.PY
CODING
import mysql.connector as sql
conn=sql.connect(host='localhost',user='root',passwd='manager',datab
ase='cims')
#if conn.is_connected():
# print("Successfully Connected")
c1=conn.cursor()
print(" SSA Computer Institute Management System")
print(" ")
print("1. Enrolling For A Course")
print("2. Edit Enrollments (as admin)")
print("3. Display Details")
print("4. Exit")
choice=int(input("Enter the Choice - "))
if choice==1:
v_admno=int(input("Enter the Admission Number: "))
v_candidatename=input("Enter your name : ")
v_course=input("Enter the Course: ")
if v_course=='JAVA':
v_course='JAVA'
elif v_course=='Python':
v_course='Python‘
elif v_course=='C':
v_course='C'
elif v_course=='BASIC':
v_course='BASIC'
elif v_course=='HTML':
v_course='HTML'
V_SQL_Insert = "insert into cand_details values (" + str(v_admno) + ",'"
+ v_candidatename +"','" + v_course + "')"
c1.execute(V_SQL_Insert)
print(" ")
print(" You are Enrolled
Mr.",v_candidatename,". Congrats!!!")
conn.commit()
print(" ")
print (" Your enrollment for", v_course ,"course is
successful!")
if choice==2:
uname=input("Enter Username:")
passwd=input("Enter Password:")
u_name='abc'
pass_wd='123'
if (uname==u_name) and (passwd==pass_wd):
print(" Password Accepted")
print("1. Delete An Enrollment")
print("2. Edit Name")
print("3. Edit Course")
print(" ")
option=int(input("Which of the above options would you like to
choose ?"))
 
if option==1:
change_adm_no=int(input("Enter the admission number of
the candidate to be removed:"))
V_SQL_Insert = "delete from cand_details where adm_no = "
+ str(change_adm_no)
c1.execute(V_SQL_Insert)
print("")
print(" Successfully removed")
conn.commit()
if option==2:
change_adm_no=int(input("Enter the admission number of
the candidate whose name is to be changed:"))
change_name=input("Enter the desired name:")
V_SQL_Insert = "update cand_details set candidate_name = '" +
change_name + "' where adm_no = " + str(change_adm_no)
c1.execute(V_SQL_Insert)
print("")
print(" Successfully edited")
conn.commit()
if option==3:
change_adm_no=int(input("Enter the admission number of
the candidate whose course is to be changed:"))
change_course=input("Enter the Course: ")
if change_course=='JAVA':
change_course='JAVA'
elif change_course=='Python':
change_course='Python'
elif change_course=='C':
change_course='C'
elif change_course=='BASIC':
change_course='BASIC'
elif change_course=='HTML':
change_course='HTML'
V_SQL_Insert = "update cand_details set course_select = '" +
change_course + "' where adm_no = " + str(change_adm_no)
c1.execute(V_SQL_Insert)
print("")
print(" Successfully modified")
conn.commit()

else:
print(" Wrong Username or Password")
 
if choice==3:
c1.execute("Select * from cand_details ")
data=c1.fetchall()
for row in data:
print(" Candidates Details ")
print(" Admission Number : ",
row[0])
print(" Candidate Name : ",
row[1])
print(" Course Selected : ", row[2])
print(" ")
print(" ")
if choice==4:
print(' Thank You ')
After enrolling for 3 candidates …
THANK YOU

You might also like