This is what I try:
example1:
a=['1','2','3','4']
for m in range(len(a)):
int(a[m])
print(a)
But then I realized that for example in:
example 2:
a=['1','2','3','4']
b= []
int(a[0])
b = b + [a[0]]
print(b)
#Output b = ['1']
Which means that int (a [0]) does not do anything that I could check. Could you give me advice on what I could do? I'm a little lost here.