0% found this document useful (0 votes)
4 views1 page

Class X Practical Python Programs AI

The document lists programming tasks for Class X students at Satish Chandra Memorial School. It includes various exercises such as checking for buzz numbers, prime numbers, and Armstrong numbers, as well as string manipulations and list operations. The tasks aim to enhance students' programming skills through practical applications.

Uploaded by

boss.yt.026
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)
4 views1 page

Class X Practical Python Programs AI

The document lists programming tasks for Class X students at Satish Chandra Memorial School. It includes various exercises such as checking for buzz numbers, prime numbers, and Armstrong numbers, as well as string manipulations and list operations. The tasks aim to enhance students' programming skills through practical applications.

Uploaded by

boss.yt.026
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/ 1

SATISH CHANDRA MEMORIAL SCHOOL

List of programs must be wri en in the Prac cal file


Class - X
1) Write a program to check a given number is a buzz number or not.
2) Write a program to print all the odd numbers from n to m where n & m are taken as input.
3) Write a program to check a given number is a prime number or not.
4) Write a program to check given number is a Duck Number or not.
5) Write a program to check given number is an Armstrong Number or not.
6) Write a program to print the sum of the digits of a number.
7) Write a program to check a given number is a Pal-Prime number or not.
8) Write a program to check a given number is Niven number or not.
9) Write a program to print the factorial of a given number.
10) Write a program to print only the even digits of a given number.
11) Write a program to print the sum of the even digits of a given number.
12) Write a program to print the given series:
i) 1 4 7 10 …….. 100
ii) 1 4 9 16 …….. 100
13) Write a program to check a given number is a Palindrome Number or not.
14) Write a program to print the length of a given string.
15) Write a program to print the total number of vowels present in a given string.
16) Write a program to print total number of Capital Le ers present in a given string.
17) Write a program to print total number of words present in a given string.
18) Write a python program to replace all the ‘is’ into ‘was’ from a given string.
19) Write a program to print a given string in reverse order.
20) Write a program to print the longest word from a given string.
21) Write a program to take 10 numbers as input and print the sum of these numbers.
22) Write a program to take 10 numbers as input and print the maximum, minimum and average number
23) Write a program to take 10 elements in the list and print it in reverse order.
24) To print the first last & the middle element of a list of n elements.
25) Write a program to print the sum of all the even numbers from the list of n elements.
26) Write a program to print the sum of all the numbers which are divisible by 7 form 10 element list.
27) Write a program to print the average of 10 given numbers using list.
28) Write a program to print the Buzz numbers from a list of n given numbers.

You might also like