Victory Amadilavictoire.hashnode.dev·Apr 26, 2024Could This Be The Weirdest Python Library Ever?I got introduced to the world of computer programming with Python (I am a staunch member of the ‘HTML is not a programming language’ camp), and after I got wowed by the basics and stuff, I went to get the award winning Head First Python book for furt...4 likesPython
Lewis Munyilewismunyi.hashnode.dev·Jan 16, 2024Fun with Avatars: Optimizing the service for cost-effectiveness | Part. 3This article series is split into four parts: Part 1: Involves creating the project, establishing the API, and developing the avatar generation module. Part 2: Focuses on containerizing the application for development and deployment. Part 3: Delve...32 readsFun with avatarsPython
Namya Shahbigsmoke.hashnode.dev·Dec 20, 2023Python Projects for Intermediate DifficultyWeb Scraper Build a web scraper using libraries like BeautifulSoup and requests. Scrape data from a website (e.g., news articles, product details) and extract relevant information. 2. Bank Account Manager Create a program to manage bank accounts...bank account manager
Divya Mohanduoknowledge.hashnode.dev·Oct 5, 2023Unlocking the Power of the 'yield' Keyword in PythonIn Python, the yield keyword is used in the context of generators and iterators. It allows you to create a generator function, which is a special type of function that can be iterated over, and it doesn't hold the entire sequence in memory. Instead, ...Python 3
M'mah Zombommahzombo.hashnode.dev·Sep 20, 2023(*, /) Beyond Multiplication and Division - Part2In the previous article, I introduced the special powers of the asterisk * and the forward slash /. If you missed it, you can check it out here: Part 1. In this article, we will be looking at how to use the asterisk and forward slash together in a fu...2 likesPython-NotesPython
M'mah Zombommahzombo.hashnode.dev·Sep 15, 2023(*, /) Beyond Multiplication and Division - Part1It is commonly known that the asterisk "*" is used for multiplication, while the forward slash "/" is used for division in Python. This is true, but many don't know that these operators can do more. What's so special about them? When these operators ...6 likes·70 readsPython-NotesPyhton
Parag Durafeparagdurafe.hashnode.dev·Jun 25, 2023Closures in PythonClosures are an important concept in programming that allows developers to create functions with a persistent state. In Python, closures are created when a nested function references a variable from its enclosing function. In this article, we will ex...35 readsPython
Matthew Hardmatthewhard.com·Jun 7, 2023Intermediate Python: Part 0 - RecursionWelcome, aspiring Python programmers, to the prelude of our intermediate programming series! Today, we embark on a captivating exploration of the fascinating world of recursion. While it was not originally on our list, I believe it is a crucial conce...57 readsPython