Question: Write python code Begin with the below code: 1 def find_elem(list): 2 # write your code here Complete the find_elem function to print a list
Write python code
Begin with the below code:
1 def find_elem(list):
2 # write your code here
Complete the find_elem function to print a list with the first and fifth elements of the given input list.
Sample Input: [1,3,5,7,9,11]
Sample Output: [3,11]
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
