

It’s one of the friendliest programming languages around. If you have written something in VBA then you’ll do fine with Python, except for all the bad/outdated nonsense you’ll have picked up from that language. And there’s interactive interpreters you can just mess around in.
If this doesn’t scare you then give it a look:
things = [4, 8, 15, 16, 23, 42]
for number in things:
print(number * 16)
64
128
240
256
368
672









The Conspiracy