
Pick your favorite text editor. Here are a few suggetsions!
Variables are standard placeholders in every language, its no different with Python.
Practice playing with these string examples!
"TUPLES" are pretty much "LISTS", only with less functionality, faster processing speed (CPU-wise), and their values cannot be changed. This video covers the need to know when you encounter a tuple.
Practice your looping knowledge with these sample questions. An additional answer sheet is attached if you cannot figure them out!
These are awesome! Arbitrary arguments and Arbitrary Key Word arguments.
We get our hands dirty with a random module. Learn how to create random integers and floats quite easily.
Learn how to easily use JSON the simplest serialization for passing data from string to objects and vice-versa.
Learn a few tricks in the OS module to perform Operating System based tasks.
Instructions on installing Pythons best Package manager in Windows.
Instructions on installing Pythons best Package manager in Linux.
Learn what VirtualEnvironment is and how to install and use it. We also install Flask, a library we we use shortly!
Using flask you can easily build a site with URL mapping, I'll show you how to get started!
Learn how to create a main layout, and use sub-templates to keep a whole site.
Learn to pass data from the route to the view, and create a 404 Handler.
Handle GET/POST requests, Redirects, and I mention a few other libraries you could utilize.
What else is there to Python? A lot! Here are some other things you can look into, and this is only touching the surface!
This is an introduction to using GIT in a console.
How to install on Windows & Linux. Ill be using a Digital Ocean Account for the Linux Demo (See links for a $10 coupon if you want to use them)
Learn how to run local commands to save time working with GIT terminal.
Deploy to your server using GIT!
You should learn this language! Python is one of the fastest growing languages, it's even renowned as the language of the decade. You can use Python on any operating system to build whatever you like, including but not limited to GUI Applications, Web Applications, and Console Applications.
I'll teach you how this seemingly strange language is actually quite simple. We cover the fundamentals to writing Python code from Syntax, Datatypes, Operators, and Looping. We'll even take a look into 3rd party package management!