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.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 developmentWhy 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 workOther 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 processorPython 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.
Regarding speed: Python
maybe slightly inferior in speed
Types of Python
- 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.
- Java implementation of Python, Jython will dynamically compile Python code into Java bytecode, and then run on the JVM.
- A C# implementation of Python, IronPython compiles Python code into C# bytecode and then runs it on the CLR. (Similar to Jython)
- Python implemented by Python recompiles Python's bytecode bytecode into machine code.
- ##Cpython
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
is in the /home/dev/ directory Create hello.py file with the following content:
print "hello,world"
|
##123 | #!/usr/bin/env python
print
"hello,world"
|
is enough. ps: You need to give hello.py execution permission before execution, chmod 755 hello.py
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
2 3 | #!/usr/bin/env python print"Hello, world"
|
34 !/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:
Python provides a sys module internally, in which sys.argv is used to capture the parameters passed in when executing python scripts
|
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!

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

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

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

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

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

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

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


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

EditPlus Chinese cracked version
Small size, syntax highlighting, does not support code prompt function

SublimeText3 English version
Recommended: Win version, supports code prompts!

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 latest version

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.
