in this python tutorial, I’ll let you know how to integrate GraphQL with python3. 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.
Category: Python Tutorials
This page will have all tutorials which are related to python 3.

Python List Comprehension
In this post, we will cover list comprehensions in python with examples. List comprehension is the process of making lists out of existing iterables.

Create Rest API Using Python Fastapi
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.

Python Check Datatype Using type() and isinstance()
This tutorial help to find a variable data type in python, we’ll also learn here how to find the variable datatype and instance type of an object using python.The python has built-in method type() and isinstance() to check datatype for a variable/object.

How To Use Strftime and Strptime In Python
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.

Python Convert a string to a number
This python tutorial helps to convert a string into a number. We can convert string str to an integer int and a floating-point number float with int() and float().

Convert string to DateTime in Python
This Python tutorial helps to convert a string into DateTime in Python. Sometimes, we are getting DateTime in string format, we need to convert it into a DateTime object.

How To Check None Value In Python
in this post, We’ll learn how to check None value in python. A null value is defined by None. It differs from an empty string, False, or a zero. It’s a data type from the NoneType object class. The None is a special singleton object.

Python Classes Tutorials with Example
The Class is a blueprint for creating an object. You can combine data(attributes) and functionality(methods) together using the python class. Each class instance can have attributes attached to it for maintaining its state, also has methods for modifying its state.

How To Check NaN Value In Python
in this post, We’ll learn how to check NAN value in python. The NaN stands for ‘Not A Number’ which is a floating-point value that represents missing data. You can determine in Python whether a single value is NaN or NOT. There are methods that use libraries (such as pandas, math, and numpy) and custom […]