帮我写一个hello world的python程序
时间: 2023-09-04 15:06:31 浏览: 141
hello_world for python
5星 · 资源好评率100%
Sure, here is a basic "Hello, World!" program in Python:
```
print("Hello, World!")
```
When you run this program, it will output the text "Hello, World!" to the console.
阅读全文