Category Archives: Python

Python: Quick Reference

I forget almost everything I read, so I’ve compiled a list of topics with examples for a quick reminder. If you find find an error in the code, forgive me and please let me know. Print stuff on the screen String Manipulation User Input Program Arguments Read and Write to files Functions or Methods If Statement Loop List Tuples Dictionary Creating Modules Classes Inheritance Python in Linux Creating a GUI …

Posted in Python | Tagged , , | Leave a comment

Python: Quick Start

What is Python? Python is a programming language like C or C++ with several key differences. First of all, it’s not as fast as C or C++ since it’s a scripting language. This means the code wont compile to a native machine language (10010101), instead a run-time environment will handle the execution. Secondly, Python is a dynamic language, meaning each line of code that the computer reads will get executed …

Posted in Programming Languages, Python | Tagged , , | Leave a comment