Learn practical skills, build real-world projects, and advance your career
a = [10,2,3]
len(a)
3
a.reverse()
a
[3, 2, 10]
for i in range(0,20,2):
    print(i)
0 2 4 6 8 10 12 14 16 18