import pandas as pd
data = ['a', 'b', 'c', 'd']
s = pd.Series(data)
print(s)
import pandas as pd
data = ['a', 'b', 'c', 'd']
s = pd.Series(data)
print(s)
|
CBSE Grade 10 Final Exam Time Table
2026 |
|||||||
|
S.NO. |
Date |
Day |
Subject |
Subject
Code |
|
||
|
1 |
17 /
02 / 2026 |
Tuesday |
MATHEMATICS
|
041 |
|
||
|
MATHEMATICS
|
241 |
|
|||||
|
2 |
21 /
02 / 2026 |
Saturday |
ENGLISH
|
101 |
|
||
|
ENGLISH
|
184 |
|
|||||
|
3 |
25 /
02 / 2026 |
Wednesday |
SCIENCE |
086 |
|
||
|
4 |
27 /
02 / 2026 |
Friday |
COMPUTER
|
165 |
|
||
|
INFORMATION
|
402 |
|
|||||
|
ARTIFICIAL
|
417 |
|
|||||
|
5 |
28 /
02 / 2026 |
Saturday |
SANSKRIT |
119 |
|
||
|
SANSKRIT |
122 |
|
|||||
|
6 |
02 /
03 / 2026 |
Monday |
HINDI
COURSE-A |
002 |
|
||
|
HINDI
COURSE-B |
085 |
|
|||||
|
7 |
05 / 03 /
2026 |
Thursday |
KANNADA |
015 |
|
||
|
8 |
07 /
03 / 2026 |
Saturday |
SOCIAL
SCIENCE |
087 |
|
||
Timings :
9:50 - Entry into the Exam Hall.
10:00 - Issue of Answer Scripts
10:15 - Issue of Question Paper
10:15 to 10:30 - Reading of the Question Paper
10:30 to 1:30 - Writing Time
INTRODUCTION
TO PYTHON LIBRARIES
Python has a huge collection of libraries that help in
creating a number of interactive applications.
A Python Library is a collection of related modules. These
modules can be used repeatedly in various programs without the need to write
the same code again and again.
Each Python Library contains a large number of modules
that one can import and use.
The most commonly used Python Libraries are : Numpy, Pandas, Matplotlib, etc…,
A Module can be imported into a Python Program with an
“import” statement.
Syntax : import Module_Name
Eg : import pandas
Eg : import math
An Alias Name can also be used while Importing a
Module.
Syntax : import Module_Name as Alias_Name
Eg : import pandas as pd
‘as’ is a keyword used for giving an Alias Name for
the Module.
IP CBSE Sample Paper 2025 ~ Solution IP CBSE Sample Paper 2024 ~ Solution IP CBSE Sample Paper 2023 ~ Solution IP CBSE Sample Paper 202...