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

    Python具有注释功能,可用于代码内文档。 注释以#开头,Python将#后面把其余的内容作为注释呈现:
    #This is a comment.
    print("Hello, World!")
    尝试一下
    您将在“Python 注释”一章中了解有关注释的更多信息。