search
HomeBackend DevelopmentPython TutorialWhat is Python? How to use Python?
What is Python? How to use Python?Jun 20, 2017 pm 01:36 PM
pythonFirst acquaintance

Introduction to Python

## Python past and present life

The founder of Python is Guido van Rossum. During the Christmas period of 1989, in order to kill time in Amsterdam, Guido van Rossum decided to develop a new script interpreter as a successor to the ABC language.

In the latest TIOBE rankings, Python overtakes PHP to occupy the fifth place! ! !

As can be seen from the above figure, Python is showing an overall upward trend, reflecting that Python is becoming more and more widely used and is gradually recognized by the industry! ! !

Python can be used in many fields, such as: data analysis, component integration, network services, image processing, numerical computing and scientific computing and many other fields. At present, almost all large and medium-sized Internet companies in the industry are using Python, such as: Youtube, Dropbox, BT, Quora (China Zhihu), Douban, Zhihu, Google, Yahoo!, Facebook, NASA, Baidu, Tencent, Autohome, Meituan etc. Things that Internet companies widely use Python to do generally include:

Automated operation and maintenance, Automated testing, Big data analysis, crawlers, Web, etc.

Attention: The above highlighted font indicates that the company mainly uses Python language for development

Why Python instead of other languages?

C and Python, Java, C#, etc.

C language: The code is compiled to obtain machine code. The machine code is directly executed on the processor, and each instruction controls the CPU work

Other languages: The code is compiled to obtain bytecode, the virtual machine executes the bytecode and converts it into machine code and then executes it on the processor

Python and C Python is a language developed from C

For use: Python’s class library is complete and simple to use. If you want to achieve the same function, Python can solve it with 10 lines of code, while C may require 100 lines or more.

For speed: Python’s Compared with C, the running speed is definitely slower.

Python and Java, C#, etc.

For use: Linux original Python, other languages ​​​​are not available; the above languages ​​​​have very rich Class library support

Regarding speed: Python
maybe slightly inferior in speed

So, there is no essential difference between Python and other languages. The other differences are: being good at a certain field and having rich talents. , first impression.

Types of Python

      ##Cpython
    • The official version of Python, implemented in C language, The most widely used, CPython implementation converts source files (py files) into bytecode files (pyc files), and then runs on the Python virtual machine.


    • Jyhton
    • Java implementation of Python, Jython will dynamically compile Python code into Java bytecode, and then run on the JVM.


    • IronPython
    • A C# implementation of Python, IronPython compiles Python code into C# bytecode and then runs it on the CLR. (Similar to Jython)


    • PyPy (Special)
    • Python implemented by Python recompiles Python's bytecode bytecode into machine code.


    . RubyPython, Brython...

Except for PyPy, the corresponding relationships and execution processes of other Pythons are as follows:

PyPy, in Based on Python, Python's bytecode is further processed to improve execution speed!

Getting started with Python

1. The first sentence of Python code

is in the /home/dev/ directory Create hello.py file with the following content:

##1

Execute the hello.py file, that is: python /home/dev/hello.py

The internal execution process of python is as follows:

2. Interpreter

When executing python /home/dev/hello.py in the previous step, clearly indicate the hello.py script Executed by the python interpreter.

If you want to execute a python script similar to executing a shell script, for example: ./hello.py , then you need to specify the interpreter at the head of the hello.py file, as follows:

print
"hello,world"
##1
2
3
#!/usr/bin/env python
print "hello,world"
##In this way, execute: .
/hello .py

is enough. ps: You need to give hello.py execution permission before execution, chmod 755 hello.py

3. Content encoding

The python interpreter is loading .py file, the content will be encoded (default ascill)

ASCII (American Standard Code for Information Interchange, American Standard Information Interchange Code) is a computer coding system based on the Latin alphabet, mainly Used to display modern English and other Western European languages, it can only be represented by up to 8 bits (one byte), that is: 2**8 = 256, so the ASCII code can only represent up to 256 symbols.

Obviously ASCII code cannot represent all the various texts and symbols in the world, so a new one is needed that can represent The encoding of all characters and symbols, namely: Unicode

Unicode (Unicode, Universal Code, Unicode) is a character encoding used on computers. Unicode was created to solve the limitations of traditional character encoding schemes. It sets a unified and unique binary encoding for each character in each language, stipulating that all characters and symbols must be represented by at least 16 bits (2 bytes), that is: 2 **16 = 65536,

Note: What is mentioned here is at least 2 bytes, possibly more


UTF-8, which is the compression of Unicode encoding And optimization, he no longer uses at least 2 bytes, but classifies all characters and symbols: the content in the ascii code is saved in 1 byte, European characters are saved in 2 bytes, and East Asian characters Use 3 bytes to save...

So, when the python interpreter loads the code in the .py file, it will encode the content (default ascill), if it is the following code:

Error: ascii code cannot represent Chinese

##1
2
3
#!/usr/bin/env python
print
"Hello, world"
##Correction: The python interpreter should be told explicitly what encoding to use to execute the source code, that is:

##12
3
4
!/usr/bin/env python
# -*- coding: utf-8 -*-
print " Hello World"

4. Comments

Current line attention: # Annotated content

Multi-line comments: """ Annotated content """

5. Execute the script and pass in parameters

Python has a large number of modules, which makes developing Python programs very simple. The class library includes three types:

  • Modules provided internally by Python

  • Open source modules in the industry

  • Modules developed by programmers themselves

Python provides a sys module internally, in which sys.argv is used to capture the parameters passed in when executing python scripts

##1
2
3
4
5
6
#!/usr/bin/env python
# -* - coding: utf-8 -*-
##import
sys
print
sys.argv

The above is the detailed content of What is Python? How to use Python?. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
详细讲解Python之Seaborn(数据可视化)详细讲解Python之Seaborn(数据可视化)Apr 21, 2022 pm 06:08 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于Seaborn的相关问题,包括了数据可视化处理的散点图、折线图、条形图等等内容,下面一起来看一下,希望对大家有帮助。

详细了解Python进程池与进程锁详细了解Python进程池与进程锁May 10, 2022 pm 06:11 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于进程池与进程锁的相关问题,包括进程池的创建模块,进程池函数等等内容,下面一起来看一下,希望对大家有帮助。

Python自动化实践之筛选简历Python自动化实践之筛选简历Jun 07, 2022 pm 06:59 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于简历筛选的相关问题,包括了定义 ReadDoc 类用以读取 word 文件以及定义 search_word 函数用以筛选的相关内容,下面一起来看一下,希望对大家有帮助。

归纳总结Python标准库归纳总结Python标准库May 03, 2022 am 09:00 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于标准库总结的相关问题,下面一起来看一下,希望对大家有帮助。

Python数据类型详解之字符串、数字Python数据类型详解之字符串、数字Apr 27, 2022 pm 07:27 PM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于数据类型之字符串、数字的相关问题,下面一起来看一下,希望对大家有帮助。

分享10款高效的VSCode插件,总有一款能够惊艳到你!!分享10款高效的VSCode插件,总有一款能够惊艳到你!!Mar 09, 2021 am 10:15 AM

VS Code的确是一款非常热门、有强大用户基础的一款开发工具。本文给大家介绍一下10款高效、好用的插件,能够让原本单薄的VS Code如虎添翼,开发效率顿时提升到一个新的阶段。

详细介绍python的numpy模块详细介绍python的numpy模块May 19, 2022 am 11:43 AM

本篇文章给大家带来了关于Python的相关知识,其中主要介绍了关于numpy模块的相关问题,Numpy是Numerical Python extensions的缩写,字面意思是Python数值计算扩展,下面一起来看一下,希望对大家有帮助。

python中文是什么意思python中文是什么意思Jun 24, 2019 pm 02:22 PM

pythn的中文意思是巨蟒、蟒蛇。1989年圣诞节期间,Guido van Rossum在家闲的没事干,为了跟朋友庆祝圣诞节,决定发明一种全新的脚本语言。他很喜欢一个肥皂剧叫Monty Python,所以便把这门语言叫做python。

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Tools

EditPlus Chinese cracked version

EditPlus Chinese cracked version

Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version

SublimeText3 English version

Recommended: Win version, supports code prompts!

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

SublimeText3 Linux new version

SublimeText3 Linux new version

SublimeText3 Linux latest version

SAP NetWeaver Server Adapter for Eclipse

SAP NetWeaver Server Adapter for Eclipse

Integrate Eclipse with SAP NetWeaver application server.