Originally posted by SneakyDetective
Great information! i will definitely give Python a closer look, any help on where to find good tutorials or (e)book's?
I have an ebook on Python that I had purchased, it costs roughly 30-40$ but I'd be willing to sell you a copy of mine for a small fee.
Originally posted by MrRawwwrReptar
This guy, this guy knows what's going on :boss:
Totally agree with assembly language first, even if you only skim the surface of the entire language it is a great start-off point for programming. People tend to ignore it due to it's blandness, but every line of code eventually gets converted to assembly, and then further to 1's and 0's and no further (we hope

)
I don't recommend Assembly at first. It's great to use with other programming languages but it has a tough learning curve at first.
Actually, any compiler takes the language it is compiling and converts it into binary. Assembly language is a low level programming language that is close to Machine Language and can more of a direct influence on how the machine operates.
Most High Level programming languages operates by the use of objects and so we can build off of these objects and reuse them to speed up our programs and make them more powerful.