| by Arround The Web

How to Install Jupyter Notebook on Ubuntu 22.04 LTS

This guide shows how to install Jupyter Notebook on Ubuntu 22.04 Jammy Jellyfish LTS. It includes steps from installing the required Python packages to creating a Python virtual environment and then connecting to the web UI.
The post How to Install Jup…

Share Button
Read More
| by Arround The Web

How to Fix Python Pip Install Error in Ubuntu 24.04

When using pip command to install a Python package in Ubuntu 24.04 will output “error: externally-managed-environment“. Here are a few workarounds to ‘fix’ the issue. As the terminal output shows you, it’s the change due to PEP 668. Since Ubuntu 23.04, it recommends Python-specific package management tools (e.g., pip) to install packages using a virtual […]

Share Button
Read More
| by Arround The Web

How to Install Python on Linux Mint 21

In this tutorial, we will show you how to install Python on Linux Mint 21. Python, a versatile and powerful programming language, has become an essential tool for developers across various domains. Its simplicity, readability, and extensive library sup…

Share Button
Read More
| by Arround The Web

Python Tkinter Examples

Comprehensive tutorial on the different uses of the Python tkinter module to create and implement the GUI-based applications using multiple demonstrations.

Share Button
Read More
| by Arround The Web

Python Regex Examples

Comprehensive guide on the purpose of the most commonly used metacharacters, ranges, and Python built-in functions to search, replace, and split the strings.

Share Button
Read More
| by Arround The Web

Python Subprocess.Popen Examples

Comprehensive guide on the multiple uses of the “subprocess.Popen” class in the Python script to help the Python users know the basic uses of this function.

Share Button
Read More
| by Arround The Web

Python String Examples

Guide on the different types of string-related tasks using different built-in Python functions and the methods of defining and using the string data in Python.

Share Button
Read More
| by Arround The Web

How to Install Python 3.13 (Dev) in Ubuntu 22.04 / 20.04

This simple tutorial shows how to install Python 3.13, which is still in development stage, in Ubuntu 22.04, or Ubuntu 20.04 LTS. Python 3.13 so far is in alpha development stage. For testing or software developing purpose, you can install it in Ubuntu either from PPA or by building from source tarball. Features in Python […]

Share Button
Read More
| by Arround The Web

Python 3.12 Installation on Linux With Hands-on Examples

In this guide, you will learn how to install Python and Pip package manager and install popular Python libraries with practical examples.
The post Python 3.12 Installation on Linux With Hands-on Examples appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

How to Concatenate Lists in Python

Practical tutorial on list concatenation using various methods and understanding these techniques to efficiently work with lists in Python along with examples.

Share Button
Read More
| by Arround The Web

How to Fix the “No Module Named Psycopg2” Error in Python

Practical guide on the step-by-step process to rectify the “No Module Named Psycopg2” error in Python and the common reasons for this error along with examples.

Share Button
Read More
| by Arround The Web

How to Convert Datetime to Epoch in Python

Comprehensive tutorial on the different ways to convert the datetime value to epoch in Python using total_seconds, timestamp, strftime, and timegm functions.

Share Button
Read More
| by Arround The Web

How to Implement a _ForEach_ Loop in Python

Comprehensive tutorial on the various ways to implement a foreach loop in Python using a similar functionality like the “for” loop and the map() function.

Share Button
Read More
| by Arround The Web

How to Create and Use Python Generators

Guide on the methods to create and use the Python generators to mass-produce the values of a particular sequence without storing them altogether in the memory.

Share Button
Read More
| by Arround The Web

How to Create a One-Line For Loop in Python

Tutorial on the different ways to create a one-line “for” loop to perform numerous tasks in Python and define the sequence of elements that you want to iterate.

Share Button
Read More
| by Arround The Web

How to Calculate Time Difference in Python

Practical guide on the different examples to find the time difference in Python and how to convert the obtained time difference value into various time units.

Share Button
Read More
| by Arround The Web

Python Dominates: GitHub’s Top Programming Languages of 2023

According to GitHut data, Python is the most popular language on GitHub for 2023, highlighting its global impact on coding. Here’s more on that!
The post Python Dominates: GitHub’s Top Programming Languages of 2023 appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

How to Install Python 3.12 on Linux Mint 21

In this tutorial, learn two ways to install Python 3.12 on Linux Mint 21 using the deadsnakes PPA or by downloading and installing from the Python source.
The post How to Install Python 3.12 on Linux Mint 21 appeared first on Linux Today.

Share Button
Read More
| by Arround The Web

Decrypting Vigenère Cipher Mathematical Equation and Python Tutorial

Practical tutorial on how the decryption process works in Vigenère cipher to keep the messages secret by scrambling the letters using a keyword with examples.

Share Button
Read More
| by Arround The Web

Decrypting Caesar Cipher Using Python: Step-by-Step Tutorial

Tutorial on the step-by-step guide on to decrypt the Caesar cipher messages using Python by collecting the ciphertext and choosing a key along with examples.

Share Button
Read More