0% found this document useful (0 votes)
53 views20 pages

Class 11 Python Project

Class 11 project with 12 python codes and 9 SQL codes with acknowledgement and introduction. Edit TEACHER'S name in acknowledgement and you are good to go!

Uploaded by

Abhaya Sood
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
53 views20 pages

Class 11 Python Project

Class 11 project with 12 python codes and 9 SQL codes with acknowledgement and introduction. Edit TEACHER'S name in acknowledgement and you are good to go!

Uploaded by

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

I would like to express my sincere

gratitude to Smt. Mamata Kanwar Mam


for her guidance and constant
inspiration and valuable suggestion.

I would also like to thank my parents


and classmates for constant motivation
and support.

I am highly benefitted by this project


and have gained a lot of knowledge
about various processes and
techniques employed to write an
efficient program.
Python is an interpreted, high level,
general purpose programming
language. Created by Guido Van Rossum
and first released in 1991, Python
design philosophy emphasizes code
readability with its notable use of
white spaces. Its language constructs.
An object oriented approach aim to
help programmers to write logical code.

MySQL is an open source relational


System (RDBMS). SQL stands for
“STRUCTURED AND QUERY” Language.

It is free and open source software.

It is owned by oracle cooperation.


Create table graduate

Inserting values in table


Select name, average from graduate

where rank = 1

order by stipend desc;

Select * from graduate ;


alter table toppers

add(tution char(3));

Select * from toppers

where name like ”_____%”;


Alter table topper

Drop column tuition;

Select concat(name, average) from graduate;


Desc graduate;
Capitalise first letter of each word.

Output
To print Fabonacci series till giver
integer and printing it as a list

Output
Test whether the string is palindrome
or not

Output
To calculate mean and sum of integers
entered as a list

Output
Converting small case string to capital
case string

OUTPUT
List Sorting

OUTPUT
LCM and HCF of two numbers

OUTPUT
Sum of digits entered as string

OUTPUT
Enter marks in three subject as a tuple

OUTPUT
Count duplicate element of each list

OUTPUT
Number of integers and words entered
in a string

OUTPUT
Shift all the zeroes to the right of a list

OUTPUT

You might also like