Appearance
默认情况下,Python 中的代码语句按顺序执行。
下面的流程图演示了 3 个语句如何按顺序执行。
例如,
a = 2 b = 3 c = a*b print(c)
上面的代码将按以下顺序执行: