Python Hello World

Jinku Hu 2022年12月21日 2018年1月29日
Python Hello World

我们 Python 学习之旅将从最基本的 Hello World 程序开始。

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

搞定!就是这么简单!你可以通过它的语法看到 Python 是多么的简答,它不需要包含类似 C\C++ 中的头文件,也不需要定义任何主函数等等。你也不需要语句终止符,你只需用 print 以及在括号内的包含要打印的内容 Hello World

Python 基本语法

来看下面的两个数字相乘的代码,

# Multiplying two numbers
x = 4
y = 2
result = x * y
print(result)
8

上述代码解释

  1. 第一行是以 # 开头的注释。注释是不被执行和被解释器忽略的代码行,所以注释不会干扰程序的正常流程。
  2. 下一行 x = 4 是变量的定义。变量的名称是 x,它存储了数值 4
  3. 同样,y = 2 中,y 是一个存储了数值 2 的变量。
  4. 此行 result = x * y,用于评估乘法表达式 x * y 并将结果存储在变量 result 中。Python 中的乘法运算符是*运算符。
  5. print() 语句用于在屏幕上打印字符串或变量值。

你可以在注意到这里没有大括号 {}(分隔符)等,在 Python 中使用缩进来分割代码块。例如,如果你要创建一个类中包换其他两个类,则需要使用如下的缩进。

class1:
    class2:
        statements
    class2:
        statements
Author: Jinku Hu
Jinku Hu avatar Jinku Hu avatar

Founder of DelftStack.com. Jinku has worked in the robotics and automotive industries for over 8 years. He sharpened his coding skills when he needed to do the automatic testing, data collection from remote servers and report creation from the endurance test. He is from an electrical/electronics engineering background but has expanded his interest to embedded electronics, embedded programming and front-/back-end programming.

LinkedIn