techPiezo
Draw a polygon in Turtle (Python)

In this article, we would discuss how to draw a polygon in Turtle. It is an inbuilt module in Python. With the help of Turtle we can draw various shapes.

pow() function in Python

In this article, we would discuss pow() function in Python. We can use either exponentiation operator (**) or pow() function to calculate powers.

Variable declaration in Python

Variables are just used to store data values. In this article, we would see Variable declaration in Python through couple of examples.

Install Python IDLE in Ubuntu 22.04

In this article, we would discuss how to install Python IDLE in Ubuntu 22.04. It is the abbreviation for Integrated Development and Learning Environment.

Install JupyterLab for Python in Ubuntu 22.04

In this article, we would discuss how to install JupyterLab for Python in Ubuntu 22.04 release. It is an interactive development environment(IDE).

Install Jupyter Notebook for Python in Ubuntu 22.04

In this article, we would see how to install Jupyter Notebook for Python in Ubuntu 22.04 release. It basically lets us have browser-based REPL shell.

Install PIP in Ubuntu 22.04

With help of PIP, we can install or remove Python modules. In this article, we would discuss how to install PIP in Ubuntu 22.04 release.

Install Python 3.10.2 in Ubuntu 22.04

In this article we discuss how to install Python 3.10.2 in Ubuntu 22.04. Python is an object-oriented, high-level, interpreted programming language.

Square root of a number in Python

We can't find square root of a negative number using math module in Python. We would do it with the help of a Python program.

Numerical operators in Python

Python expressions consists of operands and operators. In this article, we would discuss various numerical operators in Python.