How to run python on linux?
Related learning recommendations: linux video tutorial
How many are available under linux There are three ways to run python:
1. Command line execution:
Create a *.py document and write python code in it. After that, execute on the command line:
$ python *.py
Notes: 1. The absolute path of the file needs to be specified; 2. The output must be specified in the source code, such as print
2. UNIX script :
After creating the *.py file, you need to add the python execution path to the head of the source code, such as "#!/usr/bin/python". Among them, "#!" is called "hash bang". After that, first change the text permission to the executable file, and then execute it:
$ chmod +x *.py $ ./*.py
Notes: 1. If the python execution path cannot be found, enter $ which python to view; 2. Another more applicable method is to add an env program to automatically find the python path, such as rewriting the first line to "#!/usr/bin/env python". This method facilitates cross-platform execution of the program, but the prerequisite is to ensure the env path; if you do not know the env path, enter $ which env to view.
3. Module loading and reloading:
Module (module): an encapsulation of a group of variable names. A module corresponds to this single "namespace". After loading the module, access the object through object.attribute. A module can be understood as a "package". The advantage of this is that all codes that deal with the same problem are packaged for repeated use. The module concept provided by python solves the problem of repeated variable names very well, because even if the variable names are the same, they can still be distinguished because the module names are different (much like the "double colon" operator in R language, package::function ).
Loading: import mymoduel or from mymodule import object; another method uses execfile('mymodule.py').
Overloading: Use the load() function, such as load(mymodule).
Notes: 1. Import/from/load() does not need to specify the module suffix, which also implies that the module needs to be in the current running directory; 2. After import/from, you cannot import/from again. effect. Similarly, import/from (the second time) does not work after modifying the module. This needs to be loaded with load(). execfile() does not have this problem.
4. The most enjoyable way:
Configure the python running environment in emacs.
Related learning recommendations: python tutorial
The above is the detailed content of How to run python on linux?. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

This tutorial demonstrates efficient keyword searching in Linux using the grep command family and related tools. It covers basic and advanced techniques, including regular expressions, recursive searches, and combining commands like awk, sed, and xa

This article details the multifaceted role of a Linux system administrator, encompassing system maintenance, troubleshooting, security, and collaboration. It highlights essential technical and soft skills, salary expectations, and diverse career pr

The article explains how to use regular expressions (regex) in Linux for pattern matching, file searching, and text manipulation, detailing syntax, commands, and tools like grep, sed, and awk.

The article discusses using top, htop, and vmstat for monitoring Linux system performance, detailing their unique features and customization options for effective system management.

The article provides a guide on setting up two-factor authentication (2FA) for SSH on Linux using Google Authenticator, detailing installation, configuration, and troubleshooting steps. It highlights the security benefits of 2FA, such as enhanced sec

This article compares SELinux and AppArmor, Linux kernel security modules providing mandatory access control. It details their configuration, highlighting the differences in approach (policy-based vs. profile-based) and potential performance impacts

This article details Linux system backup and restoration methods. It compares full system image backups with incremental backups, discusses optimal backup strategies (regularity, multiple locations, versioning, testing, security, rotation), and da

This article compares Linux commands (scp, sftp, rsync, ftp) for uploading files. It emphasizes security (favoring SSH-based methods) and efficiency, highlighting rsync's delta transfer capabilities for large files. The choice depends on file size,
