如何使用 Python 编写一个简单的脚本?

如何使用 Python 编写一个简单的脚本?

# This is a simple Python script

print("Hello, world!")

步骤:

  1. 打开 Python 终端或命令行。
  2. 编写 Python 代码。 在代码中,将 print() 函数用于打印 "Hello, world!" 字符串。
  3. 保存代码文件。 使用任何文本编辑器保存代码文件,例如 hello_world.py
  4. 运行脚本。 在命令行中运行以下命令:
python hello_world.py

结果:

这将打印以下输出:

Hello, world!

其他示例:

以下是一些其他示例:

  • 打印数字:
print(10)
  • 打印列表:
my_list = [1, 2, 3, 4, 5]
print(my_list)
  • 使用变量:
name = "John"
age = 30
print(f"Hello, {name}!")

注意:

  • 确保代码文件保存为 .py 文件扩展名。
  • 运行脚本时,您需要在 Python 运行环境中具有 Python 解释器。
相似内容
更多>