1
0
wiki/dev/Python/简介.md

35 lines
947 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

---
id: 简介
title: 简介
sidebar_position: 0
data: 2022年2月9日
---
## 简介
Python 是一种解释型语言,不需要编译和链接,可以节省大量开发时间。
Python 程序简洁、易读,通常比实现同种功能的 C、C++、Java 代码短很多,原因如下:
- 高级数据类型允许在单一语句中表述复杂操作;
- 使用缩进,而不是括号实现代码块分组;
- 无需预声明变量或参数。
## 运行
### 安装
Python 官网:<https://www.python.org/>,选择合适版本安装。
### 使用
在 Shell 中输入 Python 既可运行交互解释器,在解释器内编写 Python 脚本既可以运行。如果需要退出,输入`quit()`。
### 源文件的字符编码
Python 源码文件的编码是 UTF-8如果不使用默认编码则要声明文件的编码文件的**第一行**要写成特殊注释。句法如下:
```python
# -*- coding: encoding -*-
```