How can I copy list of lists and delete last element from each in one step ? I can do something like this, but would like to learn to do it in one step:
test2 = [["A","A","C"],
         ["C","A"],
         ["A","B","C","A"]]
import copy
test3 = copy.deepcopy(test2)
for item in test3:
    del item[-1]
 
    