Category: Python
3 Ways to install Python 3 on Ubuntu 18.04 Linux.
This tutorial has How to install Python 3 on Ubuntu 20.04 with 3 ways. With Ubuntu official repository, other repository and with Source code.
How to connect Python with MySQL.
Introduction In this tutorial, will learn “How to connect the Python code with your MySQL Database”. We are going to use the mysql connector module to make the connection. You can use any other third-party modules to connect your python code with the MySQL database. After making the connection we can create the database, tables,…
3 Ways to install Python 3 on Ubuntu 20.04 Linux.
This tutorial has How to install Python 3 on Ubuntu 20.04 with 3 ways. With Ubuntu official repository, other repository and with Source code.
Python range() loop function use 7 ways.
7 ways to use Python range() loop function. In the range() function have 3 arguments start, stop, and step.
for loop in py (Python) with 7 different examples.
This article for “How to use for loop in py(Python) with 7 different ways”. for loop is the fundamental concept in any language.