An Emotional Journey of Community and Contribution at PYCON APAC 2024
https://akbarul.medium.com/an-emotional-journey-of-community-and-contribution-at-pycon-apac-2024-31c987bd1acf
https://akbarul.medium.com/an-emotional-journey-of-community-and-contribution-at-pycon-apac-2024-31c987bd1acf
Medium
An Emotional Journey of Community and Contribution at PYCON APAC 2024
At PYCON APAC 2024, Marriata Wijaya, a core Python developer, shared her emotional journey of finding belonging within the Python…
Catch Multiple Exceptions in Python: A Complete Guide
https://medium.com/@ryan_forrester_/how-to-catch-multiple-exceptions-in-python-a-complete-guide-a777fe49a76e
https://medium.com/@ryan_forrester_/how-to-catch-multiple-exceptions-in-python-a-complete-guide-a777fe49a76e
Medium
Catch Multiple Exceptions in Python: A Complete Guide
When your Python code encounters an error, catching the right exceptions can mean the difference between a graceful recovery and an abrupt…
Reinforcement Learning in Finance: Optimizing Portfolio Management with Python Implementation
https://bernhard-brugger.medium.com/reinforcement-learning-in-finance-optimizing-portfolio-management-with-python-implementation-38f6e8b325b9
https://bernhard-brugger.medium.com/reinforcement-learning-in-finance-optimizing-portfolio-management-with-python-implementation-38f6e8b325b9
Medium
Reinforcement Learning in Finance: Optimizing Portfolio Management with Python Implementation
In today´s dynamic world of finance, traditional portfolio management methods are finding it increasingly difficult to keep up with…
Master Django’s Q Objects, Prefetch, and FilteredRelation for Efficient Data Retrieval
https://medium.com/@ewho.ruth2014/master-djangos-q-objects-prefetch-and-filteredrelation-for-efficient-data-retrieval-48afb9b0c516
https://medium.com/@ewho.ruth2014/master-djangos-q-objects-prefetch-and-filteredrelation-for-efficient-data-retrieval-48afb9b0c516
Medium
Master Django’s Q Objects, Prefetch, and FilteredRelation for Efficient Data Retrieval
Introduction
Python Destructors: A Complete Guide
https://medium.com/@ryan_forrester_/python-destructors-a-complete-guide-6e276cc5e7a9
https://medium.com/@ryan_forrester_/python-destructors-a-complete-guide-6e276cc5e7a9
Medium
Python Destructors: A Complete Guide
Understanding destructors in Python helps you manage resources and clean up your objects properly. Let’s explore how Python’s `__del__`…
How I Built a Movie Recommendation App That Actually Works!
https://medium.com/@esrakorkmazz/how-i-built-a-movie-recommendation-app-that-actually-works-dff1efb1884e
https://medium.com/@esrakorkmazz/how-i-built-a-movie-recommendation-app-that-actually-works-dff1efb1884e
Medium
How I Built a Movie Recommendation App That Actually Works!
Find Your Next Favorite Movie Instantly!
Web Scraping with SeleniumBase and Python in 2024
https://medium.com/@datajournal/web-scraping-with-seleniumbase-e3ead6aebe7f
https://medium.com/@datajournal/web-scraping-with-seleniumbase-e3ead6aebe7f
Medium
Web Scraping with SeleniumBase and Python in 2025
In this article, I’ll walk you through SeleniumBase’s key features, show you how to use it for scraping, and share some practical tips for…
Overcoming Python Compatibility Challenges on Apple M1 Series Laptops Using Rosetta
https://lrsowmya.medium.com/overcoming-python-compatibility-challenges-on-apple-m1-series-laptops-using-rosetta-7d29cd0eb978
https://lrsowmya.medium.com/overcoming-python-compatibility-challenges-on-apple-m1-series-laptops-using-rosetta-7d29cd0eb978
Medium
Overcoming Python Compatibility Challenges on Apple M1 Series Laptops Using Rosetta
As more developers transition to Apple’s M1 series laptops, many encounter compatibility issues when running Intel-based applications and…
Why I’m Leaving Rust (For Now) and Embracing My Nightmare: Python
https://medium.com/@vaibhavbarate7/why-im-leaving-rust-for-now-and-embracing-my-nightmare-python-101a9aea9783
https://medium.com/@vaibhavbarate7/why-im-leaving-rust-for-now-and-embracing-my-nightmare-python-101a9aea9783
Medium
Why I’m Leaving Rust (For Now) and Embracing My Nightmare: Python
Let's take career seriously!!
Python Inline If Statements: Complete Guide
https://medium.com/@ryan_forrester_/python-inline-if-statements-complete-guide-930a8eca780c
https://medium.com/@ryan_forrester_/python-inline-if-statements-complete-guide-930a8eca780c
Medium
Python Inline If Statements: Complete Guide
Python’s inline if statements (also known as ternary operators) let you write conditional expressions in a single line. Let’s explore how…
BeautifulSoup 101: A Beginner’s Guide to Web Scraping in Python
https://tomtalksit.medium.com/beautifulsoup-101-a-beginners-guide-to-web-scraping-in-python-f7b734f5563f
https://tomtalksit.medium.com/beautifulsoup-101-a-beginners-guide-to-web-scraping-in-python-f7b734f5563f
Medium
BeautifulSoup 101: A Beginner’s Guide to Web Scraping in Python
In an era where data drives decisions and insights, the ability to gather and analyze information from the web has never been more crucial…
Merging Two Images in Python Using PIL Library
https://z-e-g.medium.com/merging-two-images-in-python-using-pil-library-78ff40a086bf
https://z-e-g.medium.com/merging-two-images-in-python-using-pil-library-78ff40a086bf
Medium
Merging Two Images in Python Using PIL Library
So, you have two pictures and you want them to become the best of friends? Or maybe you want to do a meme of a cat riding on a pizza…
Write Lists to Files in Python: A Complete Guide
https://medium.com/@ryan_forrester_/write-lists-to-files-in-python-a-complete-guide-02b8ca5e61dd
https://medium.com/@ryan_forrester_/write-lists-to-files-in-python-a-complete-guide-02b8ca5e61dd
Medium
Write Lists to Files in Python: A Complete Guide
Writing lists to files is a common task in Python, whether you’re saving data for later, creating logs, or preparing data for other…
Merge Sort in Python: A Step-by-Step Guide
https://medium.com/@ryan_forrester_/merge-sort-in-python-a-step-by-step-guide-9470991fb1b1
https://medium.com/@ryan_forrester_/merge-sort-in-python-a-step-by-step-guide-9470991fb1b1
Medium
Merge Sort in Python: A Step-by-Step Guide
Merge sort stands out among sorting algorithms for its reliability and predictable performance. Let’s break down how it works in Python…