Press "Enter" to skip to content

Posts published in February 2021

Python List

Zigya Acadmey 0

The list is a data structure in Python which contains a mutable, ordered sequence of elements. Declaring a variable of the List Type: The syntax for list :<variableName> = [].…

Python loops

Zigya Acadmey 0

Python programming language provides the following types of loops to handle looping requirements. Python provides three ways for executing the loops. While all the ways provide similar basic functionality, they…

Python operator

Zigya Acadmey 0

In this article, you’ll learn everything about different types of operators in Python, their syntax and how to use them with examples. What are operators in python? Operators are special…

Python Variables

Zigya Acadmey 0

Think of a variable as a name attached to a particular object. In Python, variables need not be declared or defined in advance, as is the case in many other…

Python basic syntax

Zigya Acadmey 0

Before you start writing your first Python program, you’ve got to learn the basics. We will walk you through Python syntax basics that will help as a building block for…

Python setup

Zigya Acadmey 0

Python is one of the fastest-growing programming languages nowadays and is used for machine learning, data science, and a lot of other use cases. The best way to start learning…