Posts for Python

Python is an interpreted, high-level, general-purpose programming language

How to compare strings in Python

In this article, you are going to learn about how to compare strings in Python. In general, a string is nothing but a sequence of multiple characters. In the Python programming language, strings are an array of bytes that represent Unicode characters. In the journey of development, we often need to work with strings and […]

February 1, 2022 in Code examples & Python
Deven
Deven wrote

5 ways to implement Python Switch Case statement

In this article, I will take you through the five ways to implement the Python Switch Case statement. A switch case statement in a computer programming language is a powerful tool that gives the total programmer control over the program’s flow according to an expression’s outcomes or a variable. Switch cases are mainly used to […]

January 26, 2021 in Python

Building a RESTful Flask CRUD API

In this guide, we will learn how to build a Restful CRUD API with Flask. Most beginners prefer to use Flask because it is easy to learn and use as its syntax is more python friendly. Flask is more flexible, and it doesn’t enforce dependencies. It allows developers to structure their projects the way they […]

October 15, 2020 in Flask & Python