0% found this document useful (0 votes)
9 views

Brief Overview of Python (1)

Uploaded by

Jayant Kumar
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)
9 views

Brief Overview of Python (1)

Uploaded by

Jayant Kumar
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/ 41

PROJECT SYNOPSIS

Title of the project :


‘ LITERACY RATE SYSTEM IN INDIA’
Problem Definition :
Design a project to analyze the literacy status in India
Contribution / Team members :
Data fetching and Idea-Ridhima Maheshwari,
Code formulation- Mehak Arora
Choosing the Topic : The topic was chosen for ease
of people to check literacy rate in States And
Union Territories of India
Software/Hardware Requirements
Hardware Requirements:
A Computer/Laptop with
Operating System-Windows 7 or above
x86 64-bit CPU (Intel / AMD architecture)
4 GB RAM.
5 GB free disk space.
Software Requirements:
Collab
Google Sheets
Google Docs
Limitations :
1- It is not web based project
2- Needs more customization to fulfill the needs of
every person.
3- More functionality can be added as per
requirement.
4- No provision to print hard copies.

References / Bibliography:
BRIEF OVERVIEW OF PYTHON
WHAT IS PYTHON ?
Python is an programming language with dynamic semantics, it was introduced by
Guido Van Rossum in 1991 . Its high-level built in data structures, combined with
dynamic typing and binding, make it very attractive for Rapid Application
Development, as well as for use as a scripting language. Python's simple, easy to learn
syntax emphasizes readability and therefore reduces the cost of program
maintenance. Python supports modules and packages, which encourages program
modularity and code reuse. The Python interpreter is available in source or binary form
without charge for all major platforms.

USES OF PYTHON
Python is commonly used for developing websites and software, task
automation, data analysis, and data visualization. Since it’s relatively easy to
learn, Python has been adopted by many non-programmers, such as
accountants and scientists, for a variety of everyday tasks, like organizing
finances.

● Data analysis and machine learning


● Web development
● Automation or scripting
● Software testing and prototyping
PANDAS
WHAT IS PANDAS ?
Pandas is a Python library used for working with data sets.It has

functions for analyzing, cleaning, exploring, and manipulating data.

The name "Pandas" has a reference to both "Panel Data", and

"Python Data Analysis" and was created by Wes McKinney in 2008.

DATA STRUCTURE IN PANDAS


A data structure is a collection of data values and operations that can be applied
to that data. It enables efficient storage, retrieval and modification to the data.

USES OF PANDAS
Pandas allows us to analyze big data and make conclusions based on statistical
theories.Pandas can clean messy data sets, and make them readable and
relevant. Relevant data is very important in data science
Matplotlib

What is Matplotlib ?
Matplotlib is a popular data visualization library in Python.It is a
comprehensive library for creating static, animated, and interactive
visualizations in Python. Matplotlib makes easy things easy and hard things
possible. Create publication quality plots. Make interactive figures that can
zoom, pan, update. Customize visual style and layout.

USES OF MATPLOTLIB
It's often used for creating static,
interactive, and animated visualizations in
Python. Matplotlib allows you to generate
plots, histograms, bar charts, scatter plots,
etc., with just a few lines of code.
DATABASE
A database is a file that is organized for storing data. Most databases are
organized like a dictionary in the sense that they map from keys to values.
The biggest difference is that the database is on disk (or other permanent
storage), so it persists after the program ends.

DATABASE MANAGEMENT SYSTEM


A database management system (or
DBMS) is essentially nothing more
than a computerized data-keeping
system. Users of the system are given
facilities to perform several kinds of
operations on such a system for either
manipulation of the data in the
database or the management of the database structure itself.
CERTIFICATE

This is to certify that the project report entitled LITERACY RATE

ANALYSIS SYSTEM OF INDIA has been successfully completed and is

being submitted for Practical examination of class 12 Informatic

Practices(Code - 065). By Mehak Arora of class XII

Mrs Anshu Saigal Mrs Sneh Verma

(Internal signature ) (External signature ) (Principal signature)


ACKNOWLEDGEMENT

I would like to express my special thanks to our teacher Mrs

Anshu Saigal who gave me the golden opportunity to do this

wonderful project on the topic ‘LITERACY RATE ANALYSIS SYSTEM

OF INDIA’. She helped in research and I came to know about so

many things and I am thankful to her.

Secondly, I would like to thank my parents and friends who

helped me a lot in finalizing this project within the limited time

frame .
CODING

import pandas as pd
import matplotlib.pyplot as plt
import sys

def Analysis():
df = pd.read_csv('/content/Untitled spreadsheet - Sheet1.csv')

df.colums = df.columns.str.replace('\n', ' ')

while True:
print('Data Frame Analysis')
print('*')
menu = '''
1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu
'''
print(menu)
print('')

ch_an = int(input('Enter your choice: '))

if ch_an == 1:
n = int(input('Enter the number of records to be displayed: '))
print('Top', n, 'records from the dataframe:')
print(df.head(n))

elif ch_an == 2:
n = int(input('Enter the number of records to be displayed: '))
print('Bottom', n, 'records from the dataframe:')
print(df.tail(n))

elif ch_an == 3:
print('Name of columns:', df.columns)
col = input('Enter the state of choice: ')
if col in df['States & UTs'].values:
state_data = df[df['States & UTs'] == col]
print(f"{col} Average\nLiteracy Rate %:", state_data['Average\nLiteracy
Rate %'].values[0])
else:
print("State not found in the DataFrame.")

elif ch_an == 4:
m = float(input('Enter percentage: '))
states = df[df['Average\nLiteracy Rate %'] >= m]
print(f'States and UTs with literacy rate >= {m}%:')
print(states[['States & UTs', 'Average\nLiteracy Rate %']])
elif ch_an == 5:
max_rate_row = df.loc[df['Average\nLiteracy Rate %'].idxmax()]
print('State with highest literacy rate:', max_rate_row['States & UTs'], 'with a
rate of', max_rate_row['Average\nLiteracy Rate %'])
elif ch_an == 6:
avg_rate = df['Average\nLiteracy Rate %'].mean()
print('Average literacy rate of India:', avg_rate)
elif ch_an == 7:
print('Displaying Dataframe:')
print(df)
print('')
elif ch_an == 8:
break

def Visuals():
df=pd.read_csv('/content/Untitled spreadsheet - Sheet1.csv')
while True:
print('VISUAL MENU')
print('==================================')
print('1-Line chart for particular states on basis of avg. literacy rate')
print('2-Bar graph state wise male and female literacy rate')
print('3-Line chart on the basis for particular states on the basis of male female and
avg. literacy rate')
print('4-Bar for particular states on the basis of male female and avg. literacy rate')
print('5-Back to main menu')

print('***********************************************************************************************
*************')
choice=int(input('Enter choice-'))
if choice==1:
n=int(input('Enter num of states(1-36)-'))
df0=df.head(n)
print(df0)
df0.plot(kind='line',x='States & UTs',y='Average\nLiteracy Rate %')
plt.show()
elif choice==2:
n=int(input('Enter num of states(1-36)-'))
df2=df.head(n)
print(df2)
df2.plot(kind='bar',x='States & UTs')
plt.show()
elif choice==3:
n=int(input('Enter num of states(1-36)-'))
df1=df.head(n)
print(df1)
df1.plot(kind='line',x='States & UTs')
plt.show()
elif choice==4:
df3=df
df3=df3.drop('Average\nLiteracy Rate %',axis=1)
print(df3)
n=int(input('Enter num of states(1-36)-'))
df4=df3.head(n)
print(df4)
df4.plot(kind='bar',x='States & UTs')
plt.show()
else:
Break
for n in range (0,1):

print('****************************************')

print('LITERACY RATE OF INDIA')

print('_______________________________________________')

print('1-Analysis\n')

print('2-Data Visualisation\n')

print('3-Manipulation\n')

print('4-Exit')

print('.............................................................................')

opt=input('Enter Your Choice:')

if opt=='1':

Analysis()

elif opt=='2':

Visuals()

elif opt=='3':

Manipulation()
else:

my_chance=input('Type y to exit.')

if my_chance=='y'or my_chance=='Y':

print('Thankyou! Exiting now..')

sys.exit()

else:

print('\n Invalid Choice.')

ans=input('To continue type y-')

OUTPUT
****************************************
LITERACY RATE OF INDIA
_______________________________________________
1-Analysis

2-Data Visualisation

3-Manipulation

4-Exit
.............................................................................
Enter Your Choice:1
<ipython-input-92-07433ca93c33>:5: UserWarning: Pandas doesn't allow columns
to be created via a new attribute name - see
https://pandas.pydata.org/pandas-docs/stable/indexing.html#attribute-access
df.colums = df.columns.str.replace('\n', ' ')
Data Frame Analysis
*

1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu

Enter your choice: 1


Enter the number of records to be displayed: 10
Top 10 records from the dataframe:
States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate % \
0 A&N islands 90.11 81.84
1 Andhra Pradesh 73.40 59.50
2 Arunachal Pradesh 73.69 59.57
3 Assam 90.10 81.20
4 Bihar 79.70 60.50
5 Chhattisgarh 85.40 68.70
6 Chandigarh 90.54 81.38
7 Dadra and Nagar Haveli 86.46 65.93
8 Daman & Diu 91.48 79.59
9 Delhi 93.70 82.40

Average\nLiteracy Rate %
0 86.27
1 66.40
2 66.95
3 85.90
4 70.90
5 77.30
6 86.43
7 77.65
8 87.07
9 88.70
Data Frame Analysis
*

1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu

Enter your choice: 2


Enter the number of records to be displayed: 10
Bottom 10 records from the dataframe:
States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate % \
27 Punjab 88.50 78.50
28 Rajasthan 80.80 57.60
29 Sikkim 87.29 76.43
30 Tamil Nadu 87.90 77.90
31 Telangana 80.50 65.10
32 Tripura 92.18 83.15
33 Uttarakhand 94.30 80.70
34 Uttar Pradesh 81.80 63.40
35 West Bengal 84.80 76.10
36 All-India 84.70 70.30

Average\nLiteracy Rate %
27 83.70
28 69.70
29 82.20
30 82.90
31 72.80
32 87.75
33 87.60
34 73.00
35 80.50
36 77.70
Data Frame Analysis
*

1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu

Enter your choice: 4


Enter percentage: 50
States and UTs with literacy rate >= 50.0%:
States & UTs Average\nLiteracy Rate %
0 A&N islands 86.27
1 Andhra Pradesh 66.40
2 Arunachal Pradesh 66.95
3 Assam 85.90
4 Bihar 70.90
5 Chhattisgarh 77.30
6 Chandigarh 86.43
7 Dadra and Nagar Haveli 77.65
8 Daman & Diu 87.07
9 Delhi 88.70
10 Goa 87.40
11 Gujarat 82.40
12 Haryana 80.40
13 Himachal Pradesh 86.60
14 Jammu & Kashmir 77.30
15 Jharkhand 74.30
16 Karnataka 77.20
17 Kerala 96.20
18 Lakshadweep 92.28
19 Madhya Pradesh 73.70
20 Maharashtra 84.80
21 Manipur 79.85
22 Meghalaya 75.48
23 Mizoram 91.58
24 Nagaland 80.11
25 Odisha 77.30
26 Puducherry 86.55
27 Punjab 83.70
28 Rajasthan 69.70
29 Sikkim 82.20
30 Tamil Nadu 82.90
31 Telangana 72.80
32 Tripura 87.75
33 Uttarakhand 87.60
34 Uttar Pradesh 73.00
35 West Bengal 80.50
36 All-India 77.70
Data Frame Analysis
*

1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu
Data Frame Analysis

1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu

Enter your choice: 5


State with highest literacy rate: Kerala with a rate of 96.2
Data Frame Analysis
*

1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu

Enter your choice: 6


Average literacy rate of India: 80.94243243243243
Data Frame Analysis
*

1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu

Enter your choice: 7


Displaying Dataframe:
States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate % \
0 A&N islands 90.11 81.84
1 Andhra Pradesh 73.40 59.50
2 Arunachal Pradesh 73.69 59.57
3 Assam 90.10 81.20
4 Bihar 79.70 60.50
5 Chhattisgarh 85.40 68.70
6 Chandigarh 90.54 81.38
7 Dadra and Nagar Haveli 86.46 65.93
8 Daman & Diu 91.48 79.59
9 Delhi 93.70 82.40
10 Goa 92.81 81.84
11 Gujarat 89.50 74.80
12 Haryana 88.00 71.30
13 Himachal Pradesh 92.90 80.50
14 Jammu & Kashmir 85.70 68.00
15 Jharkhand 83.00 64.70
16 Karnataka 83.40 70.50
17 Kerala 97.40 95.20
18 Lakshadweep 96.11 88.25
19 Madhya Pradesh 81.20 65.50
20 Maharashtra 90.70 78.40
21 Manipur 86.49 73.17
22 Meghalaya 77.17 73.78
23 Mizoram 93.72 89.40
24 Nagaland 83.29 76.69
25 Odisha 84.00 70.30
26 Puducherry 92.12 81.22
27 Punjab 88.50 78.50
28 Rajasthan 80.80 57.60
29 Sikkim 87.29 76.43
30 Tamil Nadu 87.90 77.90
31 Telangana 80.50 65.10
32 Tripura 92.18 83.15
33 Uttarakhand 94.30 80.70
34 Uttar Pradesh 81.80 63.40
35 West Bengal 84.80 76.10
36 All-India 84.70 70.30

Average\nLiteracy Rate %
0 86.27
1 66.40
2 66.95
3 85.90
4 70.90
5 77.30
6 86.43
7 77.65
8 87.07
9 88.70
10 87.40
11 82.40
12 80.40
13 86.60
14 77.30
15 74.30
16 77.20
17 96.20
18 92.28
19 73.70
20 84.80
21 79.85
22 75.48
23 91.58
24 80.11
25 77.30
26 86.55
27 83.70
28 69.70
29 82.20
30 82.90
31 72.80
32 87.75
33 87.60
34 73.00
35 80.50
36 77.70

Data Frame Analysis


*

1. Top records
2. Bottom records
3. Display literacy rates of a particular state
4. Display states with literacy rate >= n%
5. State with maximum literacy rate
6. Average literacy rate of India
7. Display complete dataframe
8. Back to menu

Enter your choice: 8


****************************************

LITERACY RATE OF INDIA

_______________________________________________

1-Analysis

2-Data Visualisation

3-Manipulation

4-Exit
.............................................................................

Enter Your Choice:2

VISUAL MENU

==================================

1-Line chart for particular states on basis od avg. literacy rate

2-Bar graph state wise male and female literacy rate

3-Line chart on the basis for particular states on the basis of male female and avg. literacy rate

4-Bar for particular states o the basis of male female and avg. literacy rate

5-Back to main menu

************************************************************************************************************

Enter choice-1

Enter num of states(1-36)-10

States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate % \

0 A&N islands 90.11 81.84

1 Andhra Pradesh 73.40 59.50

2 Arunachal Pradesh 73.69 59.57

3 Assam 90.10 81.20

4 Bihar 79.70 60.50


5 Chhattisgarh 85.40 68.70

6 Chandigarh 90.54 81.38

7 Dadra and Nagar Haveli 86.46 65.93

8 Daman & Diu 91.48 79.59

9 Delhi 93.70 82.40

Average\nLiteracy Rate %

0 86.27

1 66.40

2 66.95

3 85.90

4 70.90

5 77.30

6 86.43

7 77.65

8 87.07

9 88.70
VISUAL MENU

==================================

1-Line chart for particular states on basis od avg. literacy rate

2-Bar graph state wise male and female literacy rate

3-Line chart on the basis for particular states on the basis of male female and avg. literacy rate

4-Bar for particular states o the basis of male female and avg. literacy rate

5-Back to main menu

************************************************************************************************************

Enter choice-2

Enter num of states(1-36)-10


States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate % \

0 A&N islands 90.11 81.84

1 Andhra Pradesh 73.40 59.50

2 Arunachal Pradesh 73.69 59.57

3 Assam 90.10 81.20

4 Bihar 79.70 60.50

5 Chhattisgarh 85.40 68.70

6 Chandigarh 90.54 81.38

7 Dadra and Nagar Haveli 86.46 65.93

8 Daman & Diu 91.48 79.59

9 Delhi 93.70 82.40

Average\nLiteracy Rate %

0 86.27

1 66.40

2 66.95

3 85.90

4 70.90
5 77.30

6 86.43

7 77.65

8 87.07

9 88.70

VISUAL MENU
==================================
1-Line chart for particular states on basis od avg. literacy rate
2-Bar graph state wise male and female literacy rate
3-Line chart on the basis for particular states on the basis of male female and avg. literacy rate
4-Bar for particular states o the basis of male female and avg. literacy rate
5-Back to main menu
********************************************************************************************************
****
Enter choice-3
Enter num of states(1-36)-3
States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate % \
0 A&N islands 90.11 81.84
1 Andhra Pradesh 73.40 59.50
2 Arunachal Pradesh 73.69 59.57

Average\nLiteracy Rate %
0 86.27
1 66.40
2 66.95

VISUAL MENU
==================================

1-Line chart for particular states on basis od avg. literacy rate

2-Bar graph state wise male and female literacy rate

3-Line chart on the basis for particular states on the basis of male female and avg. literacy rate

4-Bar for particular states o the basis of male female and avg. literacy rate

5-Back to main menu

************************************************************************************************************

Enter choice-3

Enter num of states(1-36)-10

States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate % \

0 A&N islands 90.11 81.84

1 Andhra Pradesh 73.40 59.50

2 Arunachal Pradesh 73.69 59.57

3 Assam 90.10 81.20

4 Bihar 79.70 60.50

5 Chhattisgarh 85.40 68.70

6 Chandigarh 90.54 81.38

7 Dadra and Nagar Haveli 86.46 65.93


8 Daman & Diu 91.48 79.59

9 Delhi 93.70 82.40

Average\nLiteracy Rate %

0 86.27

1 66.40

2 66.95

3 85.90

4 70.90

5 77.30

6 86.43

7 77.65

8 87.07

9 88.70
VISUAL MENU

==================================

1-Line chart for particular states on basis od avg. literacy rate

2-Bar graph state wise male and female literacy rate

3-Line chart on the basis for particular states on the basis of male female and avg. literacy rate

4-Bar for particular states o the basis of male female and avg. literacy rate

5-Back to main menu

************************************************************************************************************

Enter choice-3

Enter num of states(1-36)-36


States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate % \

0 A&N islands 90.11 81.84

1 Andhra Pradesh 73.40 59.50

2 Arunachal Pradesh 73.69 59.57

3 Assam 90.10 81.20

4 Bihar 79.70 60.50

5 Chhattisgarh 85.40 68.70

6 Chandigarh 90.54 81.38

7 Dadra and Nagar Haveli 86.46 65.93

8 Daman & Diu 91.48 79.59

9 Delhi 93.70 82.40

10 Goa 92.81 81.84

11 Gujarat 89.50 74.80

12 Haryana 88.00 71.30

13 Himachal Pradesh 92.90 80.50

14 Jammu & Kashmir 85.70 68.00

15 Jharkhand 83.00 64.70

16 Karnataka 83.40 70.50


17 Kerala 97.40 95.20

18 Lakshadweep 96.11 88.25

19 Madhya Pradesh 81.20 65.50

20 Maharashtra 90.70 78.40

21 Manipur 86.49 73.17

22 Meghalaya 77.17 73.78

23 Mizoram 93.72 89.40

24 Nagaland 83.29 76.69

25 Odisha 84.00 70.30

26 Puducherry 92.12 81.22

27 Punjab 88.50 78.50

28 Rajasthan 80.80 57.60

29 Sikkim 87.29 76.43

30 Tamil Nadu 87.90 77.90

31 Telangana 80.50 65.10

32 Tripura 92.18 83.15

33 Uttarakhand 94.30 80.70

34 Uttar Pradesh 81.80 63.40


35 West Bengal 84.80 76.10

Average\nLiteracy Rate %

0 86.27

1 66.40

2 66.95

3 85.90

4 70.90

5 77.30

6 86.43

7 77.65

8 87.07

9 88.70

10 87.40

11 82.40

12 80.40

13 86.60

14 77.30
15 74.30

16 77.20

17 96.20

18 92.28

19 73.70

20 84.80

21 79.85

22 75.48

23 91.58

24 80.11

25 77.30

26 86.55

27 83.70

28 69.70

29 82.20

30 82.90

31 72.80

32 87.75
33 87.60

34 73.00

35 80.50

VISUAL MENU

==================================

1-Line chart for particular states on basis od avg. literacy rate

2-Bar graph state wise male and female literacy rate

3-Line chart on the basis for particular states on the basis of male female and avg. literacy rate
4-Bar for particular states o the basis of male female and avg. literacy rate

5-Back to main menu

************************************************************************************************************

Enter choice-4

States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate %

0 A&N islands 90.11 81.84

1 Andhra Pradesh 73.40 59.50

2 Arunachal Pradesh 73.69 59.57

3 Assam 90.10 81.20

4 Bihar 79.70 60.50

5 Chhattisgarh 85.40 68.70

6 Chandigarh 90.54 81.38

7 Dadra and Nagar Haveli 86.46 65.93

8 Daman & Diu 91.48 79.59

9 Delhi 93.70 82.40

10 Goa 92.81 81.84

11 Gujarat 89.50 74.80

12 Haryana 88.00 71.30


13 Himachal Pradesh 92.90 80.50

14 Jammu & Kashmir 85.70 68.00

15 Jharkhand 83.00 64.70

16 Karnataka 83.40 70.50

17 Kerala 97.40 95.20

18 Lakshadweep 96.11 88.25

19 Madhya Pradesh 81.20 65.50

20 Maharashtra 90.70 78.40

21 Manipur 86.49 73.17

22 Meghalaya 77.17 73.78

23 Mizoram 93.72 89.40

24 Nagaland 83.29 76.69

25 Odisha 84.00 70.30

26 Puducherry 92.12 81.22

27 Punjab 88.50 78.50

28 Rajasthan 80.80 57.60

29 Sikkim 87.29 76.43

30 Tamil Nadu 87.90 77.90


31 Telangana 80.50 65.10

32 Tripura 92.18 83.15

33 Uttarakhand 94.30 80.70

34 Uttar Pradesh 81.80 63.40

35 West Bengal 84.80 76.10

36 All-India 84.70 70.30

Enter num of states(1-36)-10

States & UTs Male\nLiteracy Rate % Female\nLiteracy Rate %

0 A&N islands 90.11 81.84

1 Andhra Pradesh 73.40 59.50

2 Arunachal Pradesh 73.69 59.57

3 Assam 90.10 81.20

4 Bihar 79.70 60.50

5 Chhattisgarh 85.40 68.70

6 Chandigarh 90.54 81.38

7 Dadra and Nagar Haveli 86.46 65.93

8 Daman & Diu 91.48 79.59

9 Delhi 93.70 82.40


VISUAL MENU

==================================

1-Line chart for particular states on the basis of avg. literacy rate

2-Bar graph state wise male and female literacy rate

3-Line chart on the basis for particular states on the basis of male female and avg. literacy rate

4-Bar for particular states on the basis of male female and avg. literacy rate
5-Back to main menu

************************************************************************************************************

Enter choice-5

You might also like