© 2023 Hashnode
#python3
Problem Statement:- We can scramble a string s to get a string t using the following algorithm: If the length of the string is 1, stop. If the length of the string is > 1, do the following: Split t…
Finally Clause The finally code block is also a part of exception handling. When we handle exception using the try and except block, we can include a finally block at the end. The finally block is always executed, so it is generally used fo…
Variables in Python belong to a data type. A data type is a classification that shows which value a variable has. It ensures that correct operations are done to the variable without causing errors. Da…
Hello there everyone! Its time for our weekly progress summary and this week was the first big test of the major changes we made to the way we work on updates, so in this article, we will be reflectin…
#90DaysOfDevOps Data Types Data types are the classification or categorization of data items. It represents the kind of value that tells what operations can be performed on a particular data. Since …
Exception Handling Exception handling is the process of responding to unwanted or unexpected events when a computer program runs. Exception handling deals with these events to avoid the program or system crashing, and without this process, …
The use case I learned about FastAPI and Celery when confronted with a simple yet interesting use case I had a Jupyter Notebook that connected to a database, ran some heavy processing on the data (us…
What is the ABC of Python? It stands for the abstract base class and is a concept in Python classes based on abstraction. Abstraction is an integral part of object-oriented programming. Abstraction is…
Python is one of the most sought-after programming languages in the tech world. It is an easy-to-learn, versatile, and powerful language that is used in various domains like web development, machine l…
Problem Statement:- Given a m x n grid filled with non-negative numbers, find a path from top left to bottom right, which minimizes the sum of all numbers along its path. Note: You can only move eithe…