Python Variable Scopes: Understanding Local, Global, and Nonlocal
https://python.study/p/variable-scopes-local-global-nonlocal/
https://python.study/p/variable-scopes-local-global-nonlocal/
Python Study
Python Variable Scopes: Understanding Local, Global, and Nonlocal
A simple description of all variable scopes in Python.
Download large file in Python with beautiful progress bar
https://python.study/p/download-large-file-in-python-with-progress-bar/
https://python.study/p/download-large-file-in-python-with-progress-bar/
Python Study
Download large file in Python with beautiful progress bar
In this article, we will explore the use of the tqdm package to create beautiful progress bars in the console while downloading large files from the internet.
Exploring Python Collections with ABC and Goose Typing
https://python.study/p/exploring-python-collections-with-abc-goose-typing/
https://python.study/p/exploring-python-collections-with-abc-goose-typing/
Python Study
Exploring Python Collections with ABC and Goose Typing
Learn how to use Python's Abstract Base Classes (ABCs) to analyze and categorize standard Python collections based on their properties.
Subtle Aspects of Python's Generator Function
https://python.study/p/subtle-aspects-of-pythons-generator-function/
https://python.study/p/subtle-aspects-of-pythons-generator-function/
Python Study
Subtle Aspects of Python's Generator Function
Learn about the role of return in generator functions, the advantages of yield from, how to create decorators for generators, and more in this practical article.
Creating a Powerful Interactive CLI App with ChatGPT in Python
https://python.study/p/creating-interactive-cli-app-with-chatgpt-in-python/
https://python.study/p/creating-interactive-cli-app-with-chatgpt-in-python/
Python Study
Creating a Powerful Interactive CLI App with ChatGPT in Python
Bring the interaction with ChatGPT into your terminal and learn how to create powerful interactive CLI applications in Python.