Today we will discuss the assert statement in Python. Assert statements are a great tool for debugging. Given a boolean
Continue readingAuthor: banerjeer2611
#Day25 – A cheatsheet to get Fake/Mock Data in Python using Faker
You can use Python to come up with your company’s name and slogan We will be using the library Faker
Continue reading#Day24 – How to scrape tables and other use cases of Beautiful Soup Part2
In yesterday’s article, we talked about getting started with Beautiful Soup. We discussed the following functions pretiffy() find() find_all() select()
Continue reading#Day23 – How to Scrape Websites using Requests and Beautiful Soup Part1
Today, we will be discussing web scraping using Python. We will be using the library Beautiful Soup and Requests to
Continue reading#Day22 – Cheatsheet for the Random Module in Python
The Random Module is a pretty popular module in Python. Its most common use is to generate random integers. However,
Continue readingHow to create a Twitter Bot using Python and Zapier
Getting Started with Python and Zapier to make Bots We will use Python and Zapier to make a Twitter bot that
Continue reading#Day21 – How to use requests to interact with APIs in Python
Want a list of cool APIs to use for your next project? Today we will be working with the requests
Continue reading#Day20 – Naming Conventions in Python
Today we will discuss some Naming conventions in Python. Different type of naming conventions We will name the same variable
Continue reading#Day19 – Comparing the performance of sorting vs sorted and reverse vs reversed
We will try to find out which is faster between sort(), sorted() and reverse(), reversed(). Sort and Sorted Both sort
Continue reading#Day18 – Any() and All() in Python
Can you think of a case when both any() and all() would return the same value? Today we will talk
Continue reading#Day17 – Fastest way to format strings in Python
There are 3 ways to format strings in Python Using the % operator Using format() Using f strings We have
Continue readingHow to develop/design an API that developers want to use
If you are building an API, it is more than likely that it is going to be consumed by another
Continue reading