How to Write a Basic Python Program
Python is a high-level programming language. The language utilizes a straightforward syntax which can make it easy for new users to get started. ==== Install the Dependencies ====
Part 1 of 2:
Environment Set Up
Install the Dependencies
-
Picture 1 of How to Write a Basic Python Program Open the Terminal. On Linux, you can press the Alt button to open a search bar. Type "terminal" and click on Terminal. -
Picture 2 of How to Write a Basic Python Program Know the commands. Terminal commands are shown in this document as:-
command -options filename.ext
-
sudo apt-get install build-essential
- The "sudo" command gives permission to the terminal to modify your computer. This is necessary to install any program. You will be required to enter your password.
- The "apt-get install" command tells the computer to install the package "build-essential" which is required to install Python.
-
sudo apt-get install libreadline-gplv2-dev libncursesw5-dev libssl-dev libsqlite3-dev tk-dev libgdbm-dev libc6-dev libbz2-dev
- These are programs that Python uses to run correctly. They are also known as 'dependencies'.
-
Download and Extract Python
-
Picture 3 of How to Write a Basic Python Program Download the latest version of Python from the Internet. Use the following command:-
cd ~/Downloads/
- The "cd" command changes to the correct working directory so the computer can find and put programs in the right place.
-
wget http://python.org/ftp/python/2.7.5/Python-2.7.5.tgz
-
-
Picture 4 of How to Write a Basic Python Program Decompress the Python file using the following command:-
tar -xvf Python-2.7.5.tgz
-
cd Python-2.7.5
- Once again, we need to change the working directory. This time, we change to the newly created Python directory.
-
Install Python
-
Picture 5 of How to Write a Basic Python Program Use the ./configure command checks your computer to ensure you have all the necessary components to install Python. It will alert you of any critical errors.-
./configure
-
-
Picture 6 of How to Write a Basic Python Program Use the make command. It compiles the source code and creates the executables.-
make
-
-
Picture 7 of How to Write a Basic Python Program Move the applications and libraries. With the following command, all of the applications and libraries associated with Python are moved into the correct places on your computer.-
sudo make install
-
Part 2 of 2:
Use Python
Write the Script
-
Picture 8 of How to Write a Basic Python Program Open a text editor.- Any text editor that can save files with a ".py" extension will do. Ubuntu 12.04 or greater is packaged with the Gedit editor.
-
Picture 9 of How to Write a Basic Python Program Typeprint 'Hello, World!'
- In Python, whatever is enclosed in quotes after the word print will be printed out to the screen.
-
Picture 10 of How to Write a Basic Python Program Save the file as "hello_world.py.- Be careful that the file is not saved as "hello_world.py.txt".
Run the Script
-
Picture 11 of How to Write a Basic Python Program Open the Terminal again. -
Picture 12 of How to Write a Basic Python Program Navigate to the directory where "hello_world.py" is located.- Remember to use the "cd" command to change directories.
- If you need a list of all subdirectories at your current location, use the "ls" command. "ls" stands for "list subdirectories".
-
Picture 13 of How to Write a Basic Python Program Run the script:-
python hello_world.py
-
Update 05 March 2020
You should read it
- How to install Python on Windows, macOS, Linux
- How to Install Modules for Python 3.X Using Pip in Windows 10
- Break and continue commands in Python
- How to Launch Python Files Using Windows Command Prompt
- Install Python Package with PIP on Windows, Mac and Linux
- How to Install Python on Windows
- How to Install Python
- How to Install Tkinter
- Programming Python on Android device
- How to Install Python Packages on Windows 7
- How to Use Windows Command Prompt to Run a Python File
- Exception handling - Exception Handling in Python
Maybe you are interested
How to reduce water pollution How to create sticker packages on Viber Brain research explains the difference in the impact of technology on men and women 30+ images proving anything in life can happen Twenty-three superhuman images show this world is against you 35 funny pictures make you believe that anything in this world can happen