轻松上手,快乐学习!

Python 语法


Python 执行语法

在上一页中我们了解到,可以直接通过在命令行中编写来执行Python Liunx/Unix环境直接打开终端输入python直接进入Python命令行
➜ begtut  python
Python 3.6.5 (default, Mar 30 2018, 06:41:49)
[GCC 4.2.1 Compatible Apple LLVM 8.0.0 (clang-800.0.42.1)] on darwin
Type "help", "copyright", "credits" or "license" for more information.
>>> print("hello,World!")
hello,World!
新手教程运行的 Python 都是在 Python3 版本中运行的
或者通过服务器上创建pythony文件,使用.py文件扩展名,并在命令行中运行它:
➜ begtut  python myfile.py

Python 缩进

在其他编程语言中,代码中的缩进仅用于可读性,在Python中缩进非常重要。 Python中使用缩进来指示代码块。

实例

if 5 > 2:
  print("Five is greater than two!")
运行实例 »
如果你不使用缩进,Python 会给报一个错误:

实例

if 5 > 2:
print("Five is greater than two!")
运行实例 »
红色背景的代码块执行是有报错

Python 变量

在Python中,变量是在为其赋值时创建的

实例

Python中的变量:
x = 5
y = "Hello, World!"
运行实例 »
Python 没有声明变量的命令
你将在 Python 变量 章节学习更多
Python 注释 Python 中单选注释彩 # 开始注释。# 号之后的所有字符都是注释的部分,Python 解释器会忽略它们。

实例

Python 注释
# 这是一条注释,不会被执行
print("Hello, World!")  # 这是第二条注释
运行实例 »