🐍About

Python is a programming language that people use to tell computers what to do. It's a lot like teaching a robot how to do something. With Python, you can write programs that do all sorts of things, like play games, draw pictures, or even talk to other computers. One of the great things about Python is that it's easy to learn. The language was designed to be simple and straightforward.

Python is also a very popular language, which means that there are lots of people who use it and lots of resources available to help you learn. There are online tutorials, books, and even classes you can take to learn more about Python.

Visit Python’s official website for more information

So if you're interested in programming, Python is a great language to start with. Who knows, you might even be able to create the next great app or game!

Table of Contant


💻Install Python3

Install Python3 with the following command in the Terminal

sudo apt install python3

📁Create Python3 File

There are several ways to create a Python file:

  1. Using a text editor: You can create a Python file using a text editor such as Notepad, Sublime Text, or Atom. Simply create a new file, give it a .py extension (e.g., "filename.py"), and save it.
  2. Using an Integrated Development Environment (IDE): An IDE like PyCharm, Spyder, or IDLE provides a more advanced environment for developing Python code. You can create a new file within the IDE and start coding right away.
  3. Using the command line: If you're comfortable with the command line, you can create a Python file using a text editor like nano, vim, or emacs. Just open up the editor, create a new file, and save it with a .py extension.