Wednesday, 6 November 2019

Python Programs 3

1)
Write a program to accepts two integers and print their sum.
Write a program that accepts radius of a circle and prints its area.
3)
Write a program that accepts base and height and calculate the area of triangle.
4)
Write a program that inputs a student’s marks in three subjects (out of 100) and prints the percentage marks.
5)
Write a program to compute area of square andtriangle.
6)
Write a program to calculate simple interest.
7)
Write a program to read two numbers and prints theirquotient and reminder.
8)
Write a program to find whether a given number iseven or odd.
9)
Write a program to find largest among three integers.
10)
Write a program to find lowest among three integers.
11)
Write a program that accepts length and breadth of rectangle and calculate its area.
12)
Write a program that accepts weight in Kg and height in meters and calculate the BMI.
Write a program that reads the number n and print the value of n², n³ and n⁴.


14)
Write a program to accept the marks of five subjects and calculate the average marks.
15)
Write a program to accept theheight in cm and convert it into feet and inches.
16)
Write a program that accepts the age and print if one is eligible to vote or not.
17)
Write a program that accepts two numbers and check if the first number is fully divisible by second number or not.
18)
Write a program to read base,width and height of parallelogram and calculate its area and perimeter.
19)
Write a program to accept the year and check if it is a leap year or not.
Write a program to obtain x, y, z and calculate 4x⁴+3y³+9z+6π.
21)
Write a program to input a number and print its square if it is odd, otherwise print its square root.
22)
Write a program to input a number and check whether it is positive, negative or zero.
23)
Write a program to input percentage marks of a student and find the grade as per following criterion:
Marks                        Grade
>=90                            A
75-90                           B
60-75                           C    
Below 60                    D
24)
Write a program to enter a number and check if it is a prime number or not.
25)
Write a program to display a menu for calculating area of circle or perimeter of the circle.
26)
Write a program that reads two numbers and an arithmetic operator and displays the computed result.
27)
Write a program to print whether a given character is an uppercase or a lowercase character or a digit or any other character.
28)
Write a program to calculate and print the roots of a quadratic equation ax²+bx+c=0.(a≠0)
29)
Write a program to print sum of natural numbers between 1 to 7. Print the sum progressively i.e. after adding each natural number, print sum so far.
30)
Write a program to calculate the factorial of a number.
31)
Write a program to create a triangle of stars using nested loop.
32)
Write a Python script to print Fibonacci series’ first 20 elements.
33)
Write a program to read an integer>1000 and reverse the number.
34)
Input three angles and determine if they form a triangle or not.
35)
Write a Python script that displays first ten Mersenne numbers.
36)
Write a Python script that displays first ten Mersenne numbers and displays ‘Prime’ next to Mersenne Prime Numbers.
37)
Write a program to calculate BMI and print the nutritional status as per following table:
Nutritional Status
WHO criteria BMI cut-off
Underweight
<18.5
Normal
18.5-24.9
Overweight
25-29.9
Obese
≥30
38)
Write python script to print following pattern.
1
1          3
1          3          5
1          3          5          7
39)
Write a program to find sum of series :
 s=1+x+x ²+x ³+x ⁴…+x ⁿ
40)
Write a python script to input two numbers and print their lcm and hcf.
41)
Write a python script to calculate the sum of the following series:
S=(1)+(1+2)+(1+2+3)+……+(1+2+3+….+n)
42)  
                   
Write a program to print the following using a single loop (no nested loops)
1
1          1
1          1          1
1          1          1          1
1          1          1          1          1
43)
Write a program to print a pattern like:
4 3 2 1
4 3 2
4 3
44)
44.Program that reads a line and print its statistics like:
Number of uppercase letters:
Number of lowercase letters:
Number of alphabets:
Number of digits:
45)
Write a program that reads a line and a substring and displays the number of occurrences of the given substring in the line.
46)
Write a program that takes a string with multiple words and then capitalizes the first letter of each word and forms a new string out of it.
47)
Write a program that reads a string and checks whether it is a palindrome string or not.
48)
Write a program that reads a string and displays the longest substring of the given string having just the consonants.
49)
Write a program that reads a string and then prints a string that capitalizes every other letter in the string.
50)
Write a program that reads the email id of a person in the form of a string and ensures that it belongs to domain @edupillar.com (Assumption: no invalid characters are there in email-id)





1.Write a program to accepts two integers and print their sum.


a=int(input('Enter the first integer:'))
b=int(input('Enter the second integer:'))

Sum=a+b

print('The two integers are:', a, b)
print('The sum of two integers are:', Sum)

OUTPUT:-
 










2.Write a program that accepts radius of a circle and prints its area.


r=int(input('Enter the radius of circle:'))
Area=3.14*r**2
print('The area of the circle is:', Area)

OUTPUT:-

3. Write a program that accepts base and height and calculate the area of triangle.
b=float(input('Enter the base of triangle:'))
h=float(input('Enter the height of triangle:'))

Area=(1/2)*b*h

print('The area of triangle is:', Area)

OUTPUT:-


4. Write a program that inputs a student’s marks in three subjects (out of 100) and prints the percentage marks.

print('Enter the marks of three subject out of 100')
a=float(input('Enter the marks of first subject:'))
b=float(input('Enter the marks of second subject:'))
c=float(input('Enter the marks of third subject:'))

P=(a+b+c)/3
print('The percentage marks are:', P,'%')

OUTPUT:-
5. Write a program to compute area of square and triangle.

a=float(input('Enter the value of side:'))

A=a**2
T=((3**0.5)/4)*a**2

print('The area of square is:', A)
print('The area of triangle is:', T)

OUTPUT:-
6. Write a program to calculate simple interest.

P=float(input('Enter the principal amount in ₹:'))
R=float(input('Enter the rate of interest:'))
T=float(input('Enter the time in years:'))

SI=(P*R*T)/100

print('The simple interest is:', SI,'₹')

OUTPUT:-
7. Write a program to read two numbers and prints their quotient and reminder.
a=float(input('Enter the dividend:'))
b=float(input('Enter the divisor:'))

Q=a//b
R=a%b

print('The quotient is:', Q)
print('The remainder is:', R)

OUTPUT:-
8. Write a program to find whether a given number is even or odd.

a=int(input('Enter the number:'))

if a%2==0:
print('The number is even')
else:
print('The number is odd')

OUTPUT:-
9. Write a program to find largest among three integers.

a=int(input('Enter the first integer:'))
b=int(input('Enter the second integer:'))
c=int(input('Enter the third integer:'))

if a>b and a>c:
print(a, 'is the largest integer')
if b>a and b>c:
print(b, 'is the largest integer')
if c>a and c>b:
print(c, 'is the largest integer')

OUTPUT:-

10.Write a program to find lowest among three integer.
a=int(input('Enter the first integer:'))
b=int(input('Enter the second integer:'))
c=int(input('Enter the third integer:'))

ifa<b and a<c:
print(a, 'is the smallest integer')
ifb<a and b<c:
print(b, 'is the smallest integer')
ifc<a and c<b:
print(c, 'is the smallest integer')

OUTPUT:-

11. Write a program to that accepts length and breadth of rectangle and calculate its area.
l=float(input('Enter the length of rectangle:'))
b=float(input('Enter the breadth of rectangle:'))
area=l*b

print('Rectangle Specifications')
print('Length=',l)
print('Breadth=', b)
print('Area=', area)


OUTPUT:-
12.Write a program that accepts weight in Kg and height in meters and calculate the BMI.
W = float(input('Enter the weight in Kg:'))
H = float(input('Enter height in meters:'))
BMI=W/(H**2)

print('BMI is:', BMI)


OUTPUT:-


13.Write a program that reads the number n and print the value of n², n³ and n⁴.

a=float(input('Enter the value of n:'))
b=a**2
c=a**3
d=a**4
print('The value of n² is:', b)
print('The value of n³ is:', c)
print('The value of n⁴ is:', d)

OUTPUT:-
14.Write a program to accept the marks of five subjects and calculate the average marks.
a=float(input('Enter the marks of first subject:'))
b=float(input('Enter the marks of second subject:'))
c=float(input('Enter the marks of third subject:'))
d=float(input('Enter the marks of fourth subject:'))
e=float(input('Enter the marks of fifth subject:'))
Average=(a+b+c+d+e)/5
print('The average marks are:', Average)
OUTPUT:-
15.Write a program to accept the height in cm and convert it into feet and inches.

a=float(input('Enter your height in centimeters:'))

Feet=a*0.032
Inch=a*0.393

print('Your height in feet is:', Feet)
print('Your height in inch is:', Inch)


OUTPUT:-
16.Write a program that accepts the age and print if one is eligible to vote or not.
a=int(input('Enter your age:'))
if a>=18:
print('You are eligible to vote')
else:
print('You are not eligible to vote')


OUTPUT:-

17.Write a program that accepts two numbers and check if the first number is fully divisible by second number or not.
a=float(input('Enter the first number:'))
b=float(input('Enter the second number:'))
if a%b==0:
print('The first number is fully divisible by second number')
else:
print('The first number is not fully divisible by second number')

OUTPUT:-









18.Write a program to read base, width and height of parallelogram and calculate its area and perimeter.
b=float(input('Enter the base of parallelogram:'))
w=float(input('Enter the width of parallelogram:'))
h=float(input('Enter the height of parallelogram:'))

Area=b*h
Perimeter=2*(b+w)

print('The area of parallelogram is:', Area)
print('The perimeter of parallelogram is:', Perimeter)

OUTPUT:-
19.Write a program to accept the year and check if it is a leap year or not.
a=int(input('Enter the year:'))
if a%4==0:
print('This year is a leap year')
else:
print('This year is not a leap year')


OUTPUT:-
20.Write a program to obtain x, y, z and calculate 4x⁴+3y³+9z+6π.
print('To calculate 4x⁴+3y³+9z+6π')
x=float(input('Enter the number x:'))
y=float(input('Enter the number y:'))
z=float(input('Enter the number z:'))
import math
b=(4*math.pow(x,4))+(3*math.pow(y,3))+(9*z)+(6*math.pi)
print('The result of the above expression is:',b)

OUTPUT:-

21.Write a program to input a number and print its square if it is odd, otherwise print its square root.
x=float(input(‘Enter the number:’))
import math
a=math.pow(x,2)
b=math.sqrt(x)
if x%2!=0:
print('The value of square is:',a)
else:
print('The value of square root is:',b)

OUTPUT:-
22.Write a program to input a number and check whether it is positive, negative or zero.
a=float(input('Enter the number:'))
if a>=0:
if a==0:
                print('The number is zero')
else:
                print('The number is a positive number')
else:
print('The number is a negative number')

OUTPUT:-
23.Write a program to input percentage marks of a student and find the grade as per following criterion:
Marks                        Grade
>=90                            A
75-90                           B
60-75                           C    
Below 60                    D

a=float(input('Enter the percentage marks:'))
if a>=90:
print('The student has got an A grade')
elif a>=75 and a<90:
print('The student has got a B grade')
elif a>=60 and a<75:
print('The student has got a C grade')
else:
print('The student has got a D grade')



OUTPUT:-



24. Write a program to enter a number and check if it is a prime number or not.
num=int(input('Enter the number:'))
for i in range(2,num//2+1):
    if num%i==0:
        print('It is not a prime no.')
        break
else:
    print('It is a prime number')

OUTPUT:-

25.  Write a program to display a menu for calculating area of circle or perimeter of the circle.
r=float(input(‘Enter the radius of  the circle:’)
print(‘1.Calculate perimeter’)
print(‘2.Calculate area’)
choice=int(input(‘Enter your choice (1 or 2):’))
if choice==1:                           
        peri=2*3.14159*r
        print(‘Perimeter of the circle with radius’,r,’:’,peri)
else:
        area=3.14159*r*r
print(‘Area of the circle of the radius’,r,’:’,area)
26.Write a program that reads two numbers and an arithmetic operator and displays the computed result.
a=float(input('Enter the first number:'))
b=float(input('Enter the second number:'))
c=input('Enter the operator[/,*,+,-]:')
if c=='/':
    r=a/b
elif c=='*':
    r=a*b
elif c=='+':
    r=a+b
elif c=='-':
    r=a-b
else:
    print('Invalid operator')
print(a,c,b,'=',r)
27.Write a program to print whether a given character is an uppercase or a lowercase character or a digit or any other character.
ch=input('Enter a single character:')
if ch>='A' and ch<='Z':
    print('You have entered an uppercase character.')
elif ch>='a' and ch<='z':
    print('You have entered an lowercase character.')
elif ch>='0' and ch<='9':
    print('You have entered a digit.')
else:
    print('You have entered a special character.')
28.Write a program to calculate and print the roots of a quadratic equation ax²+bx+c=0.(a0)
import math
print('For quadratic equation, ax²+bx+c=0,enter coefficents below')
a=int(input('Enter a:'))
b=int(input('Enter b:'))
c=int(input('Enter c:'))
if a==0:
    print('Value of a should not be zero')
    print('Aborting!!')
else:
    d=b*b-4*a*c
    if d>0:
        root1=(-b+math.sqrt(d))/(2*a)
        root2=(-b-math.sqrt(d))/(2*a)
        print('Roots are real and unequal')
        print('Root1=',root1,',Root2=',root2)
    elif d==0:
        root1=-b/2*a
        print('Roots are real and equal')
        print('Root1=', root1,',Root2=',root1)
    else:
        print('Roots are complex and imaginary')

OUTPUT:-




29. Write a program to print sum of natural numbers between 1 to 7. Print the sum progressively i.e. after adding each natural number, print sum so far.
Sum=0
for n in range(1,8):
    Sum+=n
    print('Sum of natural numbers <=',n,'is',Sum)

OUTPUT:-

30.Write a program to calculate the factorial of a number.
num=int(input('Enter a number:'))
fact=1
a=1
while a<=num:
    fact*=a
    a+=1
print('The factorial of',num,'is',fact)

OUTPUT:-



31. Write a program to create a triangle of stars using nested loop.
for i in range(1,6):
    print()
    for j in range(1,i):
        print('*',end=' ')

32.Write a Python script to print Fibonacci series’ first 20 elements.
first=0
second=1
print(first, end=' ')
print(second,end=' ')
for a in range(1,19):
    third=first+second
    print(third,end=' ')
    first,second=second,third


OUTPUT:-
33.Write a program to read an integer>1000 and reverse the number.
num=int(input('Enter a number (>1000):'))
tnum=num
reverse=0
while tnum>0:
    digit=tnum%10
    reverse=reverse*10+digit
    tnum=tnum//10
print('Reverse of',num,'is',reverse)

OUTPUT:-

34.Input three angles and determine if they form a triangle or not.
angle1=angle2=angle3=0
angle1=float(input('Enter the first angle:'))
angle2=float(input('Enter the second angle:'))
angle3=float(input('Enter the third angle:'))

if angle1+angle2+angle3==180:
    print('The angles form a triangle')
else:
    print('The angles do not form a triangle')
OUTPUT:-
35.Write a Python script that displays first ten Mersenne numbers.
print('First 10 Mersenne numbers are:')
for a in range(1,11):
    mersnum=2**a-1
    print(mersnum,end=' ')
print()


OUTPUT:-



36. Write a Python script that displays first ten Mersenne numbers and displays ‘Prime’ next to Mersenne Prime Numbers.
for a in range(1,21):
    mersnum=2**a-1
    mid=mersnum//2+1
    for b in range(2,mid):
        if mersnum%b==0:
            print(mersnum)
            break
    else:
            print(mersnum,'\tPrime')
OUTPUT:-
37.Write a program to calculate BMI and print the nutritional status as per following table:
Nutritional Status
WHO criteria BMI cut-off
Underweight
<18.5
Normal
18.5-24.9
Overweight
25-29.9
Obese
≥30

w=float(input('Enter the weight in kgs:'))
h=float(input('Enter the height in meters:'))
BMI=w/h**2
print('BMI is',BMI,end='')
if BMI<18.5:
    print('...Underweight')
elif BMI>=18.5 and BMI<24.9:
    print('...Normal')
elif BMI>=25 and BMI<29.9:
    print('...Overweight')
else:
    print('...Obese')



OUTPUT:-

38.Write python script to print following pattern.
          1
1                  3
1       3       5
1       3       5       7
for a in range(3,10,2):
    print()
    for b in range(1,a,2):
        print(b, end=' ')
    print()
OUTPUT:-
39.Write a program to find sum of series :
 s=1+x+x ²+x ³+x ⁴…+x
x=float(input('Enter the value of x:'))
n=int(input('Enter the value of n (for x**n):'))
s=0
for a in range(n+1):
    s+=x**a
print('Sum of first' ,n,'terms:',s)
OUTPUT:-


40.Write a python script to input two numbers and print their lcm and hcf.
x=int(input('Enter the first number:'))
y=int(input('Enter the second number:'))
if x>y:
    smaller=y
else:
    smaller=x
for i in range(1,smaller+1):
    if x%i==0 and y%i==0:
        hcf=i
lcm=(x*y)/hcf
print('The HCF of',x,'and',y,'is:',hcf)
print('The LCM of',x,'and',y,'is:',lcm)
OUTPUT:-
41.Write a python script to calculate the sum of the following series:
S=(1)+(1+2)+(1+2+3)+……+(1+2+3+….+n)
Sum=0
n=int(input('How many terms?'))
for a in range(2,n+2):
    term=0
    for b in range(1,a):
        term+=b
    print('Term',(a-1),':',term)
    Sum+=term
print('Sum of',n,'terms is:',Sum)
OUTPUT:-
42.Write a program to print the following using a single loop (no nested loops)
1
1       1
1       1       1
1       1       1       1
1       1       1       1       1
n=1
for a in range(5):
    print(n)
    print()
    n=n*10+1
OUTPUT :-
43.Write a program to print a pattern like:
4       3       2       1
4       3       2
4       3      
4      
for i in range(4):
    for j in range(4,i,-1):
        print(j,end=' ')
    else:
        print()

OUTPUT:-

44.Program that reads a line and print its statistics like:
Number of uppercase letters:
Number of lowercase letters:
Number of alphabets:
Number of digits:

line=input('Enter a line:')
lowercount=uppercount=0
digitcount=alphacount=0

for a in line:
    if a.islower():
        lowercount+=1
    elif a.isupper():
        uppercount+=1
    elif a.isdigit():
        digitcount+=1
    if a.isalpha():
        alphacount+=1

print('Number of uppercase letters are:',uppercount)
print('Number of lowercase letters are:',lowercount)
print('Number of alphabets are:',alphacount)
print('Number of digits are:',digitcount)

OUTPUT:-





             
45.Write a program that reads a line and a substring and displays the number of occurrences of the given substring in the line.
line=input('Enter line:')
sub=input('Enter substring:')
length=len(line)
lensub=len(sub)
start=count=0
end=length

while True:
    pos=line.find(sub,start,end)
    if pos!=-1:
        count+=1
        start=pos+lensub
    else:
        break
    if start>=length:
        break
print('No. of occurences of',sub,':',count)

OUTPUT:-






46.Write a program that takes a string with multiple words and then capitalizes the first letter of each word and forms a new string out of it.

string=input('Enter a string:')
length=len(string)
a=0
end=length
string2=''

while a<length:
    if a==0:
        string2+=string[0].upper()
        a+=1
    elif (string[a]==' ' and string[a+1]!=' '):
        string2+=string[a]
        string2+=string[a+1].upper()
        a+=2
    elif (string[a]==',' and string[a+1]!=','):
        string2+=string[a]
        string2+=string[a+1].upper()
        a+=2
    else:
        string2+=string[a]
        a+=1
print('Original string:',string)
print('Capitalized words string:',string2)
OUTPUT:-

              

47.Write a program that reads a string and checks whether it is a palindrome string or not.
string=input('Enter a string:')
length=len(string)
mid=length//2
rev=-1
for a in range(mid):
    if string[a]==string[rev]:
        print(string,'is a palindrome.')
        break
    else:
        print(string,'is not a palindrome.')
        break
   
 OUTPUT:-
48.Write a program that reads a string and displays the longest substring of the given string having just the consonants.
string=input('Enter a string:')
length=len(string)
maxlength=0
maxsub=''
sub=''
lensub=0
for a in range(length):
    if string[a] in 'aeiou' or string[a] in 'AEIOU':
        if lensub>maxlength:
            maxsub=sub
            maxlength=lensub
            sub=''
            lensub=0
    else:
        sub+=string[a]
        lensub=len(sub)
    a+=1
print('Maximum length consonant substring is:',maxsub,end=' ')
print('with',maxlength,'characters')
OUTPUT:-
49.Write a program that reads a string and then prints a string that capitalizes every other letter in the string.
string=input('Enter a string:')
length=len(string)
print('Original string:',string)
string2=''
for a in range(0,length,2):
    string2+=string[a]
    if a<length-1:
        string2+=string[a+1].upper()
print('Alternatively capitalized string:',string2)
OUTPUT:-
50.Write a program that reads the email id of a person in the form of a string and ensures that it belongs to domain @edupillar.com (Assumption: no invalid characters are there in email-id)
email=input('Enter your email id:')
domain='@edupillar.com'
ledo=len(domain)       #ledo=length of domain
lema=len(email)         #lema=length of email
sub=email[lema-ledo:]

if sub==domain:
    if ledo!=lema:
        print('It is valid email id')
    else:
        print('This is invalid email id- contains just the domain name')
else:
    print('This email-d is either not valid or belongs to some other domain')
OUTPUT:-

Python Programs List


PRACTICAL LIST  CLASS 11
INPUT/OUTPUT PYTHON PROGRAM
1.            Write a simple python program in a Text Editor to print “Hello World”.
2.            Write a simple python program to assign same value to multiple variables.
3.            Write a simple python program to assign multiple values to multiple variables.
4.            Write a simple python program using single line comment and multiline comment.
5.            Write a simple python program to get the input from the user interactively using the built-in function input ().
6.            Write a simple python program to get the input from the user and use int () or float () function with the read value to change the type.
7.            Write a python program to print the area of a circle of radius 3.75 meters.
8.            Write a simple python program to obtain three numbers and print their sum.
9.            Write a simple python program to obtain length and breadth of a rectangle and calculate the area.
10.       Obtain temperatures of 07 days and then display average temperature of the week.

NUMBER / DIGIT BASED
1.            Swap the two numbers
2.            Count the number of digits in a given number
3.            Display the sum of the digits of the number entered
4.            Display the number in reverse.
5.            WAP to display Digits of a number entered in text. For eg 234 should be printed as
TWO THREE FOUR
Conditional Statement
1.            WAP to find no is –ve or +ve
2.            WAP to find no is even and odd
3.            WAP to find elder person in 2 persons
4.            WAP to find given year is leap year or not
5.            Write a program to compute area of square or a triangle , choice given by user
6.            WAP to display age is greater than 18 or not
7.            Write a program to compute simple interest.
8.            WAP to find Person is senior citizen or not, input age
9.            WAP to find which no is greater no in 2 numbers
10.       WAP to find which no is lowest no in 2 numbers
11.       WAP to find which no is greater no in 3 numbers
12.       WAP to check whether a number is divisible by 5 and 11 or not.
13.       Check whether a number is prime or not
14.       WAP to Check given character is vowel or not.
15.       WAP to input marks in 3 subjects, compute average and then calculate
grades as per following guidelines:
Grade Remarks                                                                                                   Marks
A           Level 4,above agency-normalized standards                                80% and above
B            Level 3,at agency-normalized standards                                        70-79%
C            Level2,Below but approaching agency- normalized standards  60-69%
D           Level 1-well below agency normalized standards                        50-59%
E            Level 1- too below agency normalized standards                        40-49%
R            Remedial standards                                                                               39% and below
16.       Write a menu driven program to calculate:
a.     Area of circle[A=πr2]
b.      Area of square [A=a*a]
c.      Area of rectangle[A=l*b]

ITERATIVE STATEMENTS
1.            WAP to display all number from 1 to N where n is entered by the user .
2.            WAP to display sum of all numbers from 1 to 10.
3.            WAP to display Average of numbers from 1 to 10.
4.            WAP to display multiply all numbers from 1 to 10.
5.            WAP to display Square all numbers from 1to 10.
6.            WAP to display Cube all numbers from 1to 10
7.            WAP to display all odd numbers from 1to 10
8.            WAP to display all even numbers from 1to 10
9.            WAP that uses for loops to print the sequence of letters below.
ABBCCCDDDDEEEEE
10.       WAP to print the following
*
**
***
****
*****
11.       WAP to print following pattern
# # # # #
# # # #
# # #
# #
#
12.       Write a script to print following:
8
86
864
8642
13.       Take an integer input N from the user. Print N Fibonacci numbers. Recall that Fibonacci series progresses as 0 1 1 2 3 5 8…
14.       Take an integer input N from the user. Find Factorial of N and print it .
15.       Print first 10 prime numbers.
16.       Print first 10 odd numbers
17.       Take an integer input N from the user. Print the table of N.
18.       WAP to check whether the given number is palindrome or not.

String Manipulation
1.            WAP that should perform the following tasks
a.     After getting a word from the user, your program should use a loop to print out each of the letters of the word. Just remember that strings in Python start with element 0!.
b.     Print out each of the letter in reverse order.
c.      Make a new variable that is the original word reverse and print variable.
2.            Code to count number
3.            Write a loop that prints out the index of every ‘i’ in ‘Mississippi’.
4.            Using endswith() and startwith() function print the character used in the start and end of a string.
5.            Write a python program to enter a string and a substring. It should then display the number of occurrences of the given substring in the line.
6.            WAP that inputs a word and prints “Yes it starts!!”if the given word starts with “0”,”1”,”2”,…………..,”9”.
7.            WAP to reverse a string by using function.
8.            WAP to replace a character in a string.
9.            Program to print whether a given character is an uppercase or a lowercase character or a digit or any other character.
10.       Write a python program to enter a string in smaller case and convert it into upper case.
11.       Write a python program to enter a string and print the length of the string using built-in function.
12.       Write a python program to replace one string with the other string.
13.       Write python program to enter a string and then enter a character and check the frequency of that character in that string.
14.       Write a python program that receives the index and returns the corresponding value.
LIST
1.            WAP that returns the largest even number in the list of integers. If there is no even number in input, print  ”No even number”.
2.            Write a python program to print elements of a list [‘q’,’w’,’e’,’r’,’t’,’y’] in separate lines along with element’s both indexes.
3.            WAP that prints the sum of the even indexed elements of L, minus the
sum of the odd-indexed elements of L.
4.            WAP to find the median from a given list.
5.            WAP to find the mode, from a given list.
6.            Write a python program that inputs a list of numbers and shifts all the
zero’s to right and all non-zero numbers to left of the list.

DICTIONARIES
1.                     Write a program to create a phone dictionary for the students of class XI
and print their Index values.
2.                     WAP that users a dictionary that contains ten usernames and
password. The program should ask the user to enter their username and
passwords. If user name is not in the dictionary, the program should
indicate that the person is not a valid user of the system. IF the user
name is in the dictionary, but the user does not enter the right
password, the program should say that the password is invalid. If the
password is correct, then the program should tell the user that they are
now logged into the system.
3.                     Create a nested dictionary that stores the marks details along with
student names and then prints the output.