A Basic Introduction To Python 3
A while back I was introduced to what has become my #1 favorite programming/scripting language: Python. It’s difficult for a language developer to come up with something that’s both powerful and easy to write, something that flows naturally and allows you to focus on what’s important in your code. Python does this beautifully. It makes just the right kinds of assumptions, allowing you to focus more on what your program should do instead of exactly how it should be done. There’s no worrying about memory management, variable typing, or those blasted semicolons, you just keep your mind on the logic of your application.
