Write a program to Find the middle element of a random number list
Topic: Write a program to Find the middle element of a random number list
Solution
my_list = [4,3,2,9,10,44,1] print("mid value is ",my_list[int(len(my_list)/2)])
List all Python Programs