top of page
Search
Rajesh Singh
Jun 18, 20211 min read
Python program to remove elements of a given list
Program: n=[9,18,27,36,45,54,63] print("List=",n) i=int(input("Enter the position of elements to delete : ")) del n[i] print("List after...
21 views0 comments
Rajesh Singh
Jun 16, 20211 min read
Python program to find minimum value in List
Program: list=[(1,15,11), (4,7,1), (7,11,2),(10,10,18)] print("The list is: " +str(list)) res1=min(list)[0] res2=min(list)[1]...
47 views0 comments
bottom of page