Python · 简介安装

简介

Python 是一种极少数能兼具 简单功能强大 的编程语言。

  • 优点:优雅、明确、简单
  • 缺点:执行效率稍低、代码无法加密

安装

1
2
3
4
5
6
7
8
# Mac上安装
$ brew install python3

$ python -V
Python 2.7.10

$ python3 -V
Python 3.7.4

开发

IDE

注释

  • 单行注释:以 # 开头的语句
  • 多行注释:以 """ 开头,""" 结尾的语句
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
#!/usr/bin/env python3
# -*- coding: utf-8 -*-

"""
第一个 Python 程序 - hello, world!
向伟大的 Guido van Rossum 先生致敬

Version: 0.1
Author: Hui Rao
"""

print('hello, world!')
print('你好', '世界') # print("你好,世界!")
print('hello', 'world', sep=', ', end='!')
print('goodbye, world', end='!\n')

注意:Python 程序是 大小写敏感 的。

缩进

Python 语言官方建议使用 四个空格 来缩进,放置在一起的语句必须拥有相同的缩进,每一组这样的语句被称为块。