Python Word
Python Word
CODING:-
else:
print(invalid choice)
OUTPUT:-
CODING:-
OUTPUT:-
CODING:-
list=[]
for i in num:
if i not in list:
list.append(i)
return list
num=[int(input())for i in range(10)]
num =remove(num)
num.sort()
print("\n The unique numbers in sorted order after removing the duplicate entries")
print(num)
OUTPUT:-
The unique numbers in sorted order after removing the duplicate entries
[1, 2, 3, 4, 5, 6, 7, 8]
4.Write a Python program to calculate total marks, percentage and grade of a student. Marks
obtained in each of the three subjects are to be input by the user. Assign grades according to the
following criteria:
Grade A: Percentage >=80
Grade B: Percentage>=70 and <80
Grade C: Percentage>=60 and <70
Grade D: Percentage>=40 and <60
Grade E: Percentage<40
CODING:-
sub1=int(input("c = "))
sub2=int(input("c++ = "))
sub3=int(input("python = "))
total=sub1+sub2+sub3
per = (total/300)*100
if(per>=80):
print('\nGrade A')
print('\nGrade B')
print('\nGrade C')
print('\nGrade D')
else:
print("\nGrade E")
OUTPUT:-
c = 85
c++ = 85
python = 96
Grade A
5. Write a program to input any 10 numbers and calculate their average using user defined
function.
CODING:-
def avg():
sum=0
for i in range (len (nums)):
sum=sum+nums[i]
avg=sum/len(nums)
print("average:",avg)
avg()
OUTPUT:-
CODING:-
OUTPUT:-
Enter the lenght of rectangle:4
Enter the breadth of rectangle:6
Area of Rectangle: 24.0
CODING:-
def fact(n):
if(n==1):
return 1
else:
return(n*fact(n-1))
r=int(input("Enter range:"))
series="(x)"
for i in range(2,r+1):
if(i%2==0):
series=series+"-(x^"+str(i)+"/"+str(i)+"!)"
else:
series=series+"+(x^"+str(i)+"/"+str(i)+"!)"
print("The series is----\nSum=",series)
x=int(input("Enter a value of x:"))
sum=x
for i in range(2,r+1):
if(i%2==0):
sum=sum-(x**i/fact(i))
else:
sum=sum+(x**i/fact(i))
print("sum=",sum)
OUTPUT:-
Enter range:5
The series is----
Sum= (x)-(x^2/2!)+(x^3/3!)-(x^4/4!)+(x^5/5!)
Enter a value of x:2
sum= 0.9333333333333333
8. Write a program to print current date and time. In addition to this, print each component of
date (i.e. year, month, day) and time (i.e. hours, minutes and microseconds) separately.
CODING:-
OUTPUT:-
CODING:-
for i in range(len(matrix1)):
for j in range(len(matrix1[0])):
matrix3[i][j] = matrix1[i][j] - matrix2[i][j]
for r in matrix3:
print(r)
OUTPUT:-
[3, 1]
[0, -1]
10. Write a Python program to calculate the addition of diagonal elements of a matrix.
CODING:-
def addition(x,n):
d1=0
d2=0
for i in range(0,len(x)):
for j in range(0,len(x[i])):
if(i==j):
d1=d1+x[i][j]
if(i==n-j-1):
d2=d2+x[i][j]
return d1,d2
a=int(input("Enter the number of row:"))
b=int(input("Enter the number of column:"))
if(a>b):
n=a
else:
n=b
print("Enter the elements of matrix:")
x=[[int(input())for j in range(b)]for i in range(a)]
for i in range(0,len(x)):
for j in range(0,len(x[i])):
print(x[i][j],end="\t")
print()
print(addition(x,n))
OUTPUT:-
2 6 7
3 9 5
7 3 5
(16, 23)
1.Write a Python program to search a given string from the list of strings using recursion.
CODING:-
def sea(sub,i):
if(i==len(list)):
return print("Given string is not found")
if(sub==list[i]):
return print("Given string is found")
else:
i=i+1
sea(sub,i)
list=['nagpur','mumbai','pune','nashik','surat']
print("original string list:" +str(list));
subs=input("Enter string to search:")
i=0
sea(subs,i)
OUTPUT:-
CODING:-
num=[int(input())for i in range(10)]
max1=max(num[0],num[1])
max2=min(num[0],num[1])
for j in range(2,len(num)):
if(num[j]>max1):
max2=max1
max1=num[j]
else:
if(num[j]>max2):
max2=num[j]
OUTPUT:-
CODING:-
OUTPUT:-
CODING:-
class Rectangle:
# self.base = base
# self.height = height
class Triangle:
# self.base = base
# self.height = height
# Remove the import statements if you have the classes defined in the same file.
rect = Rectangle(4, 5)
trey = Triangle(4, 5)
OUTPUT:-
Rectangle Area: 20
Triangle Area: 10.0
5. Write a program to demonstrate the concept of method overriding in python.
CODING:-
class Awesome:
class SuperAwesome(Awesome):
if message != None:
else:
cObj.greetings()
OUTPUT:-
CODING:-
def fibo():
a=0
b=1
while True:
yield a
a, b=b, a+b
fib = fibo();
j=1
for i in fib:
if j <= n:
print(i)
else:
break
j=j+1
OUTPUT:-
Enter range: 8
0
1
1
2
3
5
8
13
7. Write a program to create three buttons labeled as red, green and blue respectively.
Background color of the window should be change accordingly when user click on the button.
CODING:-
from tkinter import *
window=Tk()
window.title('buttons')
def tog():
if window.cget('bg')=='red':
window.configure( bg='green' )
else:
window.configure( bg='red' )
btn_tog=Button(window,text='red', command=tog)
def tog1():
if window.cget('bg')=='green':
window.configure( bg='green' )
else:
window.configure( bg='green' )
btn_tog1=Button(window,text='green', command=tog1)
def tog2():
if window.cget('bg')=='blue':
window.configure( bg='green' )
else:
window.configure( bg='blue' )
btn_tog2=Button(window,text='blue', command=tog2)
btn_tog.pack(padx= 150, pady= 20)
btn_tog1.pack(padx= 150, pady= 20)
btn_tog2.pack(padx= 150, pady= 20)
window.mainloop()
OUTPUT:-
8. Write a program for gender selection using radio button. When the user clicks on submit button
it should display the selected gender on a label.
CODING:-
window=Tk()
frame=Frame(window)
book=StringVar()
radio_1.select()
def dialog():
box.showinfo('Selection','Your Choice:\n'+book.get())
btn=Button(frame,text='Choose',command=dialog)
btn.pack(side=RIGHT,padx=5)
radio_1.pack(side = LEFT)
radio_2.pack(side = LEFT)
frame.pack(padx=30,pady=30)
window.mainloop()
OUTPUT:-
9. Write a program to select a course from list box. When the user clicks on submit button, it
should display the message about selected course.
CODING:-
OUTPUT:-
10. Write a program that allows the user select the items using checkbox. When the user clicks on
submit button it should display the selected items name.
CODING:-
OUTPUT:-