© 2022 Hashnode
#python
Hello👋, This is part 2 of my two-part series on Understanding Amazon SQS with Python and Django. This article assumes you have read the first article in the series; You can find that article at Under…
Today's Lesson I feel like Day 4 was a much need breather from day 3. The assignments and video lectures seem to click a bit more. The main takeaway was the use of the Random Module and Lists. Random…
Introduction We all have a variety of stocks in our stock portfolio. Each individuals stock portfolio is different as it depends on an investors risk appetite, his likeness for that stock and that com…
When trying to run python from terminal, it is possible to run into the following issue: zsh: command not found: python This can happen on any system, but does occur slightly more commonly on MacOS si…
Hi, my Python projects will be here. 1) Spotify Downloader ----------------------------------------------------------------------- Using: Copy the code Go to Python Paste the code and save it name "spotifydownloader" Close Python Go to CMD …
Introduction In my last article, I wrote about using Redis as a message broker to store messages delivered by a task queue. Asides from Redis being used as cache storage or message broker, Redis can a…
If you have any desire to acquire sought-after abilities, consider data science and machine learning. These fields have become exceptionally pursued in the gig market given the rising sum and signific…
Greetings, Everyone! Often, Python appears more and more on the internet, and it's gaining more awareness from us humans. That's why these questions arise: What is Python? Why learn Python? and How to…
So In Previous Post I Created The Simple Django Model of the BlogPost Which Stores Data Like Given Below. class Post(models.Model): title = models.CharField(verbose_name='title', max_length=255, n…
Introduction In python, there is no switch case, unlike other programming languages. So the question comes how do we write a switch case in python? Basically, there are two ways in which you can try …