I want to multiply each element in my list by 2, but I got ['123123', '456456', '789789'] instead of [246, 912, 1578].
Here's my code
list = ['123', '456', '789']
my_new_list = []
for i in list:
my_new_list.append(i*2)
print (my_new_list)
what should i change or add to the code to get [246, 912, 1578]?