Next articles are organized like a book. At the end of each page there is a link for the next page. Every page has the index link on top right corner, that will bring you back here. If you wish to go back to a previous chapter, use the browser back button or the index below. If you are first time here, skip the index and read on the entire page. You will use the index later.
Course Index:
Here, you'll find a curated selection of highlights from my Twitch stream about Python. I recommend to register an account, follow me and subscribe. Watch on full screen with a tablet at heand to be able to scan QR codes for references. Enjoy your journey through this video collection!
Python was designed to be "user friendly" that is why it is a dynamic typed language and not a static typed language. In dynamic languages you can change value and value type for a variable during runtime. This means there is no code optimization and there must be a garbage collector somewhere that slows down complex processes.
Another problem Python has is the GIL (global interpreter lock) this is hard to explain but it makes multi-core/parallel applications work slow. Actually this problem is resolved still for some reasons python multitasking is sluggish.
But… this it also depend on algorithms you are using. How much data you store in memory and how this data is organized. Python do not have Arrays like C, C++ and Java. Array require fix data length. In Python a collection can hold any kind of data: Numeric, String even other collections. So you can have a list of lists or a dictionary of lists. This is why Python is so slow. It uses dynamic lists.
We have set-up several code snippets that you can clone from GitHub, investigate and modify. We have used these examples during the course. You can use replit or jupiter notebook, to create and run code on-line. Feel free to explore:
External Code:
Making a large project in Python require practice. Professional developers work locally on desktop computers and laptops. You can setup Python interpreter on your computer. Also there is a nice IDE available called IDLE. To make advanced projects in Python I recommend PyCharm IDE editor that has a community edition.
Thank you for considering my course. Not yet but soon we will create a Python book. Until we do, let's get started with the text articles. Click the link below to start learning now! Take the quiz after you have finish learning and brag about your result on social media.
Start learning: Python Syntax