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

Python Program List (2)

The document is a comprehensive list of Python programs categorized into various sections such as Basic Programs, Conditionals, Loops, Series, Numbers, Standard Definitions, Patterns, and Other Programs. Each program is numbered and includes a brief description along with the date of completion. The programs cover a wide range of topics, including arithmetic operations, conditional statements, series generation, and pattern printing.

Uploaded by

cschinmayi01
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)
2 views

Python Program List (2)

The document is a comprehensive list of Python programs categorized into various sections such as Basic Programs, Conditionals, Loops, Series, Numbers, Standard Definitions, Patterns, and Other Programs. Each program is numbered and includes a brief description along with the date of completion. The programs cover a wide range of topics, including arithmetic operations, conditional statements, series generation, and pattern printing.

Uploaded by

cschinmayi01
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/ 5

Python Program List

Sl. No. Programs Dates


Basic Programs
1 Print “Hello World” 3rd Feb 25
2 Compute Arithmetic Operations (+, -, *, /, %) : Use elif create a Menu - Simple Calculator 3rd Feb 25
3 Concatenate two string with + operator. 3rd Feb 25
4 Display the input string 'n' times. Use: * operator 3rd Feb 25
5 Find the Square root of a number using exponent operator. Use: ** Operator 3rd Feb 25
6 Find the integer quotient on division. Use // Operator 3rd Feb 25
7 Find greatest of two numbers using conditional operators : Use max() 3rd Feb 25
8 Find the greatest of three numbers using conditional operator. : Use max() 3rd Feb 25
9 Read a character and display its ASCII value and vice versa. Use: char() and ord() 3rd Feb 25
10 Compute the Simple Interest. 3rd Feb 25
11 Compute the area of Circle, Rectangle, Triangle and Square. : Use elif to create a Menu 3rd Feb 25
12 Compute the Circumference of circle. 3rd Feb 25
13 Find the area of triangle when three sides are given. 3rd Feb 25
14 Compute the Perimeter of Rectangle. 3rd Feb 25
15 To find the area of trapezium. 3rd Feb 25
16 To find the area of rhombus. 3rd Feb 25
17 To find the area of parallelogram. 4th Feb 25
18 To find the volume and surface area of cube. 4th Feb 25
19 To find the volume and surface area of cuboids. 4th Feb 25
20 To find the volume and surface area of cylinder. 4th Feb 25
21 To find the surface area and volume of a cone. 4th Feb 25
22 To find the volume and surface area of sphere. 4th Feb 25
23 To find the perimeter of a circle and triangle. 4th Feb 25
24 Swap the content of two variables using temp. 4th Feb 25
25 Swap the content of two variables without using temp. 4th Feb 25
26 Read floating point number and to print right most digit of integral part. 4th Feb 25
27 Convert temperature from degree Celsius to Fahrenheit. 4th Feb 25
28 To Conversion of an Upper-case character to a Lower-case character. Use: ord() and char() 4th Feb 25
29 To Finding the Sizes of different types Use: import sys and sys.getsizeof(data) 4th Feb 25
30 To find the average of three numbers. 4th Feb 25

To compute the net salary of an employee by considering the formula , Net salary = Basic salary +DA+TA+HRA where DA is 10% off basic
31 4th Feb 25
salary ,TA is12%of basic salary and HRA is 15% of basic salary.

32 To find the third angle of the Triangle. 4th Feb 25


Programs on Conditionals (if, if else, elif and Nested if else)
33 To find the greater of two numbers. 5th Feb 25
34 To find the greatest of three numbers. 5th Feb 25
35 To check whether given number is even or odd. 5th Feb 25
36 To check whether a given number is zero or not . 5th Feb 25
37 To check whether number a number is positive or negative. 5th Feb 25
38 To check whether number a number is positive or negative or Zero. 5th Feb 25
39 To find that the enter year is leap year or not. 5th Feb 25
40 To check whether a given character is vowel or consonant. 5th Feb 25
41 To check whether the input is number or not. 5th Feb 25
42 To check whether the person is eligible for voting or not. 5th Feb 25
43 To find the roots of an quadratic equation using : Use: elif 5th Feb 25
44 To find largest, smallest and second largest of three numbers. 5th Feb 25
45 For student grading system. 5th Feb 25
Programs on Loops
Programs on Series
45 To print your name ‘n’ times. 6th Feb 25
46 To print the natural numbers till ‘n’. 6th Feb 25
47 To print the whole numbers till ‘n’. 6th Feb 25
48 To print the even series. 6th Feb 25
49 To print the odd series. 6th Feb 25
50 To print the AP series. 6th Feb 25
51 To print the natural number series and its sum. 6th Feb 25
52 To print the even series and its sum with total number of even numbers within n. 6th Feb 25
53 To print the odd series and its sum with total number of odd numbers within n. 6th Feb 25
54 To find the sum of following series 1+2+4+8+……+n. 6th Feb 25
55 To Evaluate the following series: 1+x+x2+x3+…..+xn. 6th Feb 25
56 To evaluate the following series: 1+x+x2/2+x3/3+…..+xn/n. 6th Feb 25
57 To evaluate the following series: 1-x+x2-x3+x4-x5…..+xn. 6th Feb 25
58 To print the Sin series. 6th Feb 25
59 To print the Cos series. 6th Feb 25
60 To print First n terms of Fibonacci Numbers. 6th Feb 25
Programs on Numbers
60 To split number into digits and display. 7th Feb 25
61 To find the sum of digits of a given number. 7th Feb 25
62 To find the sum of digits of a given number till the resulting number is a single digit. 7th Feb 25
63 To find the sum of squares of digits in a given number. 7th Feb 25
64 To find the reverse of a given number. 7th Feb 25
65 To check the given number is palindrome or not. 7th Feb 25
66 To count the number of digits in a given number. 7th Feb 25
67 To find the frequency of a digit in a given number. 7th Feb 25
68 To check a given number is prime or not. 7th Feb 25
Programs on Standard Definitions
69 To print n Fibonacci number.
th 8th Feb 25
70 To print the factors of a given number and total numbers of factor. 8th Feb 25
To Print Whether the given number is perfect number or not. (for a perfect number, the sum of divisors- except the number itself-will be
71 8th Feb 25
equal to that number; Exs: 6,28,496,etc.).
72 To find the factorial of a given number. 8th Feb 25
73 To find the GCD and LCM. 8th Feb 25
74 To find square root of a given number without using square root function. 8th Feb 25
75 To Check a given number is Armstrong number or not. 8th Feb 25
76 To display the Tables for input ‘n’.(2*1=2……. 2*20=40). 8th Feb 25
77 To Find HCF of two Numbers. 8th Feb 25
78 To check given number is strong number or not. 8th Feb 25
79 To display the multiplication table. 8th Feb 25
80 To find the power of a given number without using inbuilt function pow ( ). 8th Feb 25
Programs on Patterns
81 To print Floyd’s triangle. 9th Feb 25
82 To print Pascal triangle. 9th Feb 25
83 To print pyramids of numbers. 9th Feb 25
84 To print the following patterns: 9th Feb 25
a.
*
**
***
****
*****
b.
1
12
123
1234
12345
c.
A
BB
CCC
DDDD
EEEEE
d.
*****
****
***
**
*
e.
12345
1234
123
12
1
f. 9th Feb 25
*
***
*****
*******
*********
g. 9th Feb 25
1 .
232
34543
4567654
567898765
h. 9th Feb 25
33333
32223
32123
32223
33333
Other Programs
85 To find sum and average of ‘n’ numbers. 10th Feb 25
86 To find out prime factor of given number. 10th Feb 25
87 To find out NCR factor of given number. 10th Feb 25
88 To print the Prime Number series till n. 10th Feb 25
89 To print the sequence of prime numbers between two intervals 10th Feb 25
90 To Display Armstrong Numbers between Two Intervals. 10th Feb 25
91 To print ASCII value of all characters. 10th Feb 25
92 To add two numbers without using addition operator. 10th Feb 25
93 To subtract two numbers without using subtract operator. 10th Feb 25
94 To print 1 to 100 without using loop. 10th Feb 25

You might also like