Skip to content
pythonholics.
Pythonholics / Notebook

Comparing Tuples

Comparison operator work with tuples and other sequences. For example let’s define two tuples. >>> t1 = (0, 1, 2) >>>t2 ...

Read article →
Pythonholics / Notebook

Tuple assignment

Tuples have unique syntactic features in Python programming language and that is the ability to have a tuple on the left hand side of an a...

Read article →
Pythonholics / Notebook

Introduction to Tuples

Tuple is a sequence of values much like a list. The values stored in a tuple can be any type, and they are indexed by integers. The importa...

Read article →
Pythonholics / Notebook

BIG O Notation

In algorithm analysis it’s important to quantify the number of operations or steps that algorithm will require in order to find or compute ...

Read article →
Pythonholics / Notebook

What is an Algorithm ?

Algorithm is any well-defined computational procedure that takes some value, or set of values as input and produces some value, or set of v...

Read article →
Pythonholics / Notebook

Objects and Class

It’s time to learn about core functionality of Python programming language and that is Python objects and classes. In this lesson you’ll le...

Read article →
Pythonholics / Notebook

Namespaces and Scope

Variable name also called identifier is simply a name given to objects. Everything in Python is an object. So name is a way to access speci...

Read article →
Pythonholics / Notebook

Assertions

An assertion is a sanity-check that you can turn on or turn off when you have finish testing the program. An expression is tested, and if t...

Read article →