I have a little code which is not outputting the result as I wanted.
Code
def func_a(list1):
list1.insert(2,'3')
list1.append('c')
return (list1)
def main():
list_1 = ['1','2','a','b']
list_2 = func_a(list_1)
print (list_1)
print ("
")
print (list_2)
main()
Output to this code is:
['1', '2', '3', 'a', 'b', 'c']
['1', '2', '3', 'a', 'b', 'c']
I want it to be:
['1', '2', 'a', 'b']
['1', '2', '3', 'a', 'b', 'c']
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…