Cs Class 12 Codes
Cs Class 12 Codes
def isNumberPrime(n):
if n <= 1:
return 0
for i in range(2,n):
if n % i == 0:
return 0;
return True
n = 50
a = input("number to check:")
number to check: 103
if(isNumberPrime(n)):
print("true")
else:
print("false")
Output:
Question 2
Write a program to check a number is a palindrome or not?
Output:
Question 3
Write a program to display ASCII code of a character and vice
versa
while True:
char = input("please input a single character:")
print(ord(char))
Output:
Question 4
Write a function SwapNumbers() to swap two numbers and
display the number before swapping and after swapping?
Output:
Question 5
Write a program to compute GCD and LCM of two numbers
using functions
return a
if usrinput.upper() == "GCD":
a = int(input("enter number one:"))
b = int(input("enter number two:"))
print(find_gcd(a,b))
else:
a = int(input("enter number one:"))
b = int(input("enter number two:"))
print(find_lcm(a,b))
Output:
Question 6
Write a function FACT() to calculate the factorial of an intiger
import math
def FACT(a):
fact = math.factorial(a)
return(fact)
a = int(input("enter a number:"))
fact = FACT(a)
print(f"The factorial of {a} is: {fact}")
Output:
Question 7
Write a program to generate random numbers between 1
and 6 and check whether a user won a lottery or not
import random
lottery_num = random.randrange(1,7)
lottery_usr = random.randrange(1,7)
if lottery_num == lottery_usr:
print("You won the lottery!!!")
else:
print("You lost the lottery:(")
Output:
Question 8
Write a program to count the number of vowels present in a
text file
def vowels(filename):
txt_file = open(filename,"r")
vowel = 0
vowels_list = ['a','e','i','o','u','A','E','I','O','U']
for character in txt_file.read():
if character in vowels_list:
vowel += 1
return vowel
Output:
Question 9
Write a program to write those lines which have the
character ‘p’ from one text to another text file
Output:
Question 10
Write a program to count number of words in a file
number_of_words = 0
Output:
Question 11
Write a Python program to write student data in a binary file?
import pickle
S={}
file2 = open('student.txt', 'wb')
R=int (input ('Enter roll number='))
N = input ("Enter name =')
M = float(input ("Enter marks =))
S['Rollno'] = R
S['Name'] = N
S['Marks'] = M
pickle.dump(S,file2)
file2.close()
Output:
Question 12
Write a python program to read student data from a binary
file?
import pickle
file = open("student.txt","rb")
try:
while True:
record = pickle.load(file)
except EOFError:
pass
file.close()
file= open("student.txt","rb")
print(file.read())
file.close()
Output:
Question 13
Write a python program to modify/update student data in a
binary file?
import pickle
reclst = []
f= open('student.dat"','b')
while True:
try:
rec = pickle.load(f)
reclst.append(rec)
except EOFError:
break
f.close()
R = int (input ("Enter roll number of student to update record'))
N = input ("Enter name=')
M = float(input("Enter marks ='"))
for i in range (len(reclst)):
if i['Rollno'] == R:
i['Name'] = N
i['Marks'] = M
fopen('student.dat,'wb')
for i in reclst:
pickle.dump(i,()
f.close()
Output:
Question 14
Write a python program to delete student data from binary
file?
import pickle
roll = input("Enter roll number whose record you want to delete:')
with open("student.dat","rb") as f:
list = pickle.load(f)
found = 0
1st = []
for x in list:
if roll not in x['roll']:
Ist.append(x)
else:
found = 1
if found == 1:
file.seek(0)
pickle.dump(Ist, file)
print("Record Deleted")
else:
print(Roll Number does not exist)
file.close()
Output:
Question 15
Write a python program to search a student record in a
binary file?
import pickle
roll = input("Enter roll number that you want to search in binary file)
file= open('student.dat", "rb")
list-pickle.load(file)
file.close()
for x in list:
if roll in x['roll)
print("Name of student is: ['name'])
break
else:
print("Record not found")
Output:
Question 16
Write a program to perform read and write operation with
.csv file?
import csv
def readcsv(
with open(example.csv f
data= csv.reader(f)
Output:
Question 17
Create a CSV file by entering user-id and password, read and
search the password for given userid
import csv
def searchcsv(id):
with open('data.csv','rt’)as f:
data = csv.reader(f)
for row in data:
if row[0]==id:
print(row[1])
break
else:
print("Userid is not present")
def writecsv():
with open('data.csv', 'a', newline=") as f:
w = csv.writer(f)
n=int(input("How many userid you want to enter: "))
for i in range(n):
print("Enter userid",i+1)
id=input()
pswd=input("Enter Password: ")
w.writerow([id,pswd])
writecsv()
userid=input("Enter userid for which you want to search password: ")
searchcsv(input("what is your id?"))
Output:
Question 18
Write a program for linear search
Output:
Question 19
Write a program to pass an integer list as stack to a function
and push only those elements in the stack which are divisible
by 7.
STACK=[]
def PUSH(L):
for i in L:
if i%7==0:
STACK.append(i)
print("The Stack is ", STACK)
M=eval(input("Enter an integer list;"))
PUSH(M)
Output:
Question 20
Write a menu based program to perform the operation on
stack in python
def push(n)
L.append(n)
print("Element inserted successfully")
def Pop():
if len(L)==0:
print("Stack is empty")
else:
print("Deleted element is: ", L.pop())
def Display():
print("The list is: ",L)
def size():
print("Size of list is: ", len(L))
def Top():
if len(L)==0:
print("Stack is empty")
else:
print("Value of top is: ", L[len(L)-1])
L=[]
print("MENU BASED STACK")
cd=True
while cd:
print(" 1. Push")
print("2. Pop")
print(" 3. Display")
print(" 4. Size of Stack")
print(" 5. Value at Top")
choice=int(input("Enter your choice (1-5):"))
if choice==1:
val-input("Enter the element: ")
push(val)
elif choice-2:
Pop()
elif choice==3
Display()
elif choice==4:
size()
elif choice-S
Top()
else
print("You entered wrong choice")
print("Do you want to continue? Y/N")
option input()
if options=='y’ or option=="Y"
var True
else:
var=False
Output:
Question 21
Create database, Show databases, USE, Create table, Show
Tables, Describe, Rename, Alter, Select, From, Where, Insert,
Update commands
Question 22
Queries using DISTINCT, BETWEEN, IN, LIKE, IS NULL, ORDER
BY GROUP BY, HAVING
Question 23
Display the name of departments. Each department should
be displayed once.
Question 24
Write a program to connect Python with MySQL using
database connectivity and perform the following operations
on data in database: CREATE a table in database
import mysql.connector
demodb =mysql.connector.connect(host="localhost", user="root",
passwd="computer", database "EDUCATION")
democursor-demodb.cursor()
democursor.execute("CREATE TABLE STUDENT (admn_no int primary
key, sname varchar(30), gender char(1), DOB date, stream
varchar(15),
marks float(4,2))")
Question 25
Write a program to connect Python with MySQL using
database connectivity and perform the following operation
on data in database:Insert record in the table
import mysql.connector
demodb = mysql.connector.connect(host="localhost", user "root",
passwd="computer", database="EDUCATION")
democursor-demodb.cursor()
democursor.execute("insert into student values (%s, %s, %s %s, %s,
%s)", (1245, 'Arush', 'M', '2003-10-04', 'science', 67.34))
demodb.commit()
Question 26
Write a program to connect Python with MySQL using
database connectivity and perform the following operation
on data in database: Fetch records from the table using
fetchone(), fetchall() and fetchmany().
FETCHONE()
import mysql.connector
demodb = mysql.connector.connect(host="localhost", user="root",
passwd="computer", database="EDUCATION")
democursor demodb.cursor()
democursor.execute("select from student")
print(democursor.fetchone())
FETCHALL()
import mysql.connector
demodb mysql.connector.connect(host "localhost", user "root",
passwd "computer", database "EDUCATION")
democursor demodb.cursor()
democursor.execute("select * from student")
print(democursor.fetchall())
FETCHMANY()
import mysql.connector
demodb = mysql.connector.connect(host "localhost", user="root",
passwd="computer", database="EDUCATION")
democursor demodb.cursor()
democursor.execute("select * from student")
print(democursor.fetchmany(3))
Question 27
Write a program to connect Python with MySQL using
database connectivity and perform the following operation
on data in database:Update record in the table
import mysql.connector
demodb = mysql.connector.connect(host="localhost", user="root",
passwd="computer", database="EDUCATION")
democursor-demodb.cursor()
democursor.execute("update student set marks 55.68 where
admn_no-1356")
demodb.commit()
Question 28
Write a program to connect Python with MySQL using
database connectivity and perform the following operation
on data in database: Delete record from the table
import mysql.connector
demodb = mysql.connector.connect(host="localhost", user="root",
passwd="computer", database="EDUCATION")
democursor demodb.cursor()
democursor.execute("delete from student where admn_no=1356")
demodb.commit()