MY Assignment:-
Somebody please solve my brother, I will thank him
Introduction
Scenario
Problem statement
Assignment Submission
MY Assignment:-
Somebody please solve my brother, I will thank him
Introduction
Scenario
Problem statement
Assignment Submission
White a Python program to accept a list from the user and print the alternate element of list
myList = []
n = int(input("Enter number of elements in list: "))
for i in range(n):
num = input("")
myList.append(num)
print(“List:”, myList)