Python 语法
-
Python 执行语法
可以通过直接在命令行中编写代码来执行Python语法:>>> print("hello world"); hello world >>>
或通过使用.py文件扩展名在服务器上创建python文件,然后在命令行中运行它:[root@www ~]# python3 test.py hello world
-
Python 缩进
缩进是指代码行开头的空格。在其他编程语言中,代码缩进仅出于可读性考虑,而Python中的缩进非常重要。Python使用缩进来指示代码块。例如:
尝试一下if 5 > 2: print("Five is greater than two!")
语法错误示例:
尝试一下if 5 > 2: print("Five is greater than two!")
作为程序员,空格数量由您决定,但是至少必须为一个。
尝试一下if 5 > 2: print("Five is greater than two!") if 5 > 2: print("Five is greater than two!")
您必须在同一代码块中使用相同数量的空格,否则Python将给您一个错误:
尝试一下if 5 > 2: print("Five is greater than two!") print("Five is greater than two!")
-
Python 变量
在Python中,当您为其分配值时会创建变量:x = 5 y = "Hello, World!"
Python没有用于声明变量的命令。 您将在“Python 变量”一章中了解有关变量的更多信息。 -