Closed
Description
first = []
second = []
for i in range(len(fruits)):
first.append(fruits[i])
#after this method i am getting the output like below
["orange", "apple", "banana"]
for item in range(len(first)):
print(first[item])
# after this method i am getting the output like this
orange
apple
banana
#i am trying to store the above values inside the second=[]
Need an solution for this
Metadata
Metadata
Assignees
Labels
No labels