python print_text
时间: 2023-11-22 19:05:47 浏览: 99
python中的print()输出
Sure! Here's an example of how you can use the `print()` function in Python to display text:
```python
text = "Hello, World!"
print(text)
```
This code will output the text "Hello, World!" to the console. Feel free to replace the value of the `text` variable with any other text you want to print.
阅读全文