python null

Python null: Using None keyword to assign a None Type object

If you’ve worked with other programming languages such as C or Java, you’re familiar with the concept of null. It is used in many languages to represent a pointer that doesn’t point to anything, indicate that a variable is empty, or indicate default parameters that haven’t been supplied yet. In such languages, null is frequently defined as 0, however null in Python is different.

Python Flask REST API

Python Flask REST API

To create a RESTful API, we’ll utilize Flask and Python throughout this article. To begin, we’ll create an endpoint that returns static data as dictionaries. Following that, we’ll design a class with specializations and a few endpoints for inserting, retrieving, updating, and deleting instances of this data.

Creating a server using NodeJS
| |

How to create a server using NodeJS

NodeJs is one of the most popular server-side frameworks for building web applications. This framework is completely based on the javascript language, which makes it popular among developers. Since developers must learn Javascript while working in frontend development. NodeJs makes the developers happy as they do not have to learn any other language for the server-side and can use Javascript as a server-side language. We have a step-by-step guide on getting started with NodeJs you can refer to it to learn the basics of NodeJS and quickly get started using the framework.

Basic operations in Python lists

How to perform basic operations in Python lists

In this tutorial, we will learn to perform some basic operations on python lists such as sorting, calculating the length of a list, etc. To follow this tutorial, python should be installed on your computer so you can try each of the codes by writing it on your own. It is also recommended to use an IDE(Integrated Development Environment) such as the open-source Visual Studio Code for writing programs fast and efficiently. Now, let us start our tutorial with the introduction of python lists.

Getting weather report using OpenWeather Map API

How to get weather report using Python and OpenWeatherMap API

Python is a very popular language that can be used to perform a wide variety of tasks. We can use python to perform operations like Machine Learning, Data Science, web applications, Mobile applications, Automation, etc., very easily. In this tutorial, we will use python to access weather data from an API for a specific area.

list the python-kinds in ctags

How to list the python-kinds in ctags

Ctags is a handy tool for navigating any programming language’s source code. Ctags parses identifiers, methods, classes, and other elements from the source code and saves the index in a tag file. Each tag is kept in its line. Ctags is a program that is supported by a wide range of programming languages. Functions, variables, class members, macros, and other items may be indexed depending on the language. These tags allow a text editor, a code search engine, or another utility to quickly and readily discover definitions.

Python Flask

Python Flask

Flask is a WSGI web application framework that is lightweight. It’s built to get started simple and quick, with the flexibility to scale up to more sophisticated projects. It started as a basic wrapper for Werkzeug and Jinja and has since grown into one of the most popular Python web application frameworks.