Press "Enter" to skip to content

Posts tagged as “python”

Python Function

Zigya Acadmey 0

What is a Function? OK, here goes. A function performs a specific operation on its arguments and produces a predictable output. Huh, not much simpler, and definitely not as precise (or as…

Python Dictionary

Zigya Acadmey 0

The Python programming language natively implements a number of data structures. Lists, tuples, sets, dictionaries are but some of them. We will be looking at the dictionary data type in…

Python Tuple

Zigya Acadmey 0

Tuples are an ordered sequences of items, just like lists. The main difference between tuples and lists is that tuples cannot be changed (immutable) unlike lists which can (mutable). #…

Python string manipulation

Zigya Acadmey 0

Here’s what you’ll learn in this article: Python provides a rich set of operators, functions, and methods for working with strings. When you are finished with this tutorial, you will know…

What is Python?

Zigya Acadmey 0

Python is an interpreted, object-oriented, high-level programming language with dynamic semantics. Its high-level built-in data structures, combined with dynamic typing and dynamic binding, make it very attractive for Rapid Application…

Python Database

Zigya Acadmey 0

Databases are critical for storing and processing data even if you consider a powerful programming language like Python. Ever wondered where does this whole large set of data is stored…

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…