AY-2025-26 GRADE X HYE PYTHON PROGRAMS LIST
SNo Program Description Reference in TB
B-1 Write a Program to perform basic arithmetic operations Pg 209
B-2 Write a Python Program to calculate Simple Interest (SI). Pg-211
B-3 Write a Python Program to print the square and cube of a Pg-213
number. Take input from User
B-4 Write a Program to convert weight from kilograms to pounds. Pg-213
Take input from User
B-5 Write a Python Program for : Pg-214
• Take input of Name , Age and marks scored by a person
• Print the same as
My Name is <input name>
I am <input age> yrs old
I scored <input marks> marks in my AI Assessment
B-6 Write a program to calculate the area and perimeter of a Pg-215
triangle. Take input of base and height from user
B-8 Write a program to calculate surface area and volume of a Pg-242
cuboid
B-9 Write a program to convert height in centimetres to Feet and Pg-242
inches
C-1 Write a python program to check whether a person to eligible Pg-218
to ride a roller coaster. Take inputs of age and height from User
C-2 Write a python program to print consecutive 5 numbers . Take Pg-220
input of starting number from User. Use FOR/WHILE loop
C-3 Write a python program to print sum of 1st n natural numbers. Pg-220
Take input of n from User. Use FOR/WHILE loop
C-4 Write a program to check the given number is odd or even Pg-242
C-5 Write a program to check whether the applicant is eligible to Pg-242
vote or not.
C-6 Write a program to check whether the entered number is Pg-243
positive and even, positive and odd , negative and even or
negative and odd
C-7 Write a program to check whether the number input by User is Pg-243
an Armstrong number or not.
C-8 Write a program to generate the following pattern Pg-243/4
1 1 1 1 1
2 2 2 2
3 3 3
44
5
Using Looping structures
C-9 Write Program to take temperatures readings for 7 days from Pg-244
User. Calculate the average temperature in the week
L-1 Write a Python Program to Pg-244
• Insert an element in list
• Delete an element from list
• Append a new element to the list
L-2 Write a Python Program to sum all numbers stored in a list. Pg-243
L-3 Write a python program add 2 lists and print Pg-223
L-4 Write a python program using list to : Pg-225
• Get the count of items of the list
• Reverse the list and print
• Sort the list and print
L-5 Write Python program to demonstrate Pg-222
• Index of an element of list
• Slicing in a list
L-6 Write a Python program to demonstrate the “IN” and “Not in” Pg-223
operators in a list