用python输出helloworld
时间: 2023-04-02 20:03:00 浏览: 114
hello world_world_python_
5星 · 资源好评率100%
好的。
在 Python 中,要输出 "Hello, World!",可以使用如下代码:
```python
print("Hello, World!")
```
运行之后,你会在终端或者命令行窗口看到输出结果:
```
Hello, World!
```
阅读全文
hello world_world_python_