Contributions

Article
In this article, We will explore how to work with MySQL databases using Python. Also, We’ll explore the integration of MySQL with Python, allowing you to interact with databases and perform various operations seamlessly.
Article
This tutorial help to convert a string into JSON using python. We use JSON to store and exchange data into API. Python has in-built methods to help for string to json like dumps() and eval().
Article
The np.ones() function returns a one-dimensional matrix. It can be used to initialise the weights in TensorFlow and other statistical tasks during the first iteration.
Article
I’ll show you how to open and read an Excel Workbook (.xlsx extension) and read from cells and worksheets in this tutorial. We’ll open and read the excel file using xlrd python libs.
Article
Python String casefold() is a built-in function used to implement caseless string matching.The casefold() method is very similar to the lower() method in the python. It is used for caseless matching striing in python.
Article
This python tutorial help to calculate factorial using Numpy and without Numpy. The factorial is always computed by multiplying all numbers from 1 to the number given. The factorial is always found for a positive integer.
Article
in this tutorial, I am going to tell you the number of ways to reverse a string using python 3. Python has no built-in mechanism for reversing a string. We’ll create a reverse string in a variety of methods.
Article
f-strings are string literals that begin with a f or F and contain curly braces that contain expressions that will be replaced with their values. At runtime, the expressions are evaluated. This method is very helpful in string formatting.
Tutorial
This python string tutorial help to learn some string methods(isupper(), islower(), lower() and upper()) with example.These methods are used to check string is uppercase, check string is lowercase, convert string to lowercase, and string in uppercase.
Article
in this python tutorial, I’ll let you know how to integrate GraphQL with python3. The GraphQL is a strongly typed query language that describes how to request data. We’ll create a python script that’ll return JSON as a response.
Article
In this post, we will cover list comprehensions in python with examples. List comprehension is the process of making lists out of existing iterables.
Article
This tutorial help to create rest API with fastapi and CRUDRouter.The fastapi is the fastest python API framework. We will create a CRUD API Using the python fastapi framework.
Article
The strftime() and strptime() methods from the Python datetime module will be covered in this post. The strptime() function turns a datetime object into a string in the exact opposite way as the strftime() function.