yeh doing some basic programming tutorials and getting the hang of the principles and patterns would be the correct starting point i think.
http://docs.python.org/tutorial/the neat bit about python is that it was the first of the scripting languages (now their is also ruby) that had the full support for all the structures/operators found in "proper" languages (c family) but without the complex syntax required for doing memory handling, it automates all that bit for you.
python is 100-1000 times slower than the low level ones but in many (most?) cases the real world difference between .01 and .001 of a second is somewhat moot and in alot of pro environments they still use things like python and only bother doing it in a low level language for specific tasks that do need to happen as fast as possible.
one of the things in programming is that a good pattern in a slow language will be faster in the real world than a shit pattern in a fast language - design and understanding of the problem are every bit as important as raw speed.
i get away with not having much electronics background because i have alot of programming background, i havent found much that confused me for too long and quite often someone has already done the more tedious work of wrapping all the binary protocols in higher level interfaces anyway.. yay for the internet
