Jak usunąć ostatnią postać z listy w Python

test = ["80010","80030","80050"]
newtest = [x[:-1] for x in test]
Defiant MoMo