Python语法

目录

执行Python语法

Python缩进

Python变量

备注


执行Python语法

Python语法可以通过直接在命令行中编写来执行:

>>> print("Hello, World!")
Hello, World!

或者在服务器上创建一个python文件,使用.py文件扩展名,并在命令行中运行:

C:\Users\Your Name>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!")

空格的数量取决于程序员,最常见的用法是四个,但必须至少是一个。

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变量一章中了解有关变量的更多信息。

备注

Python具有用于代码内文档的注释功能。

注释以#开头,Python将把行的其余部分呈现为注释:

#This is a comment.
print("Hello, World!")

你可能感兴趣的:(python,python)