通过print函数实现字符串 “hello world" 、字符串 “2020” 数字“2020” 的输出。
时间: 2023-09-28 10:13:43 浏览: 33
简单的print输出语句
好的,以下是实现方式:
输出字符串 "hello world":
```python
print("hello world")
```
输出字符串 "2020":
```python
print("2020")
```
输出数字 2020:
```python
print(2020)
```
注意:在 Python 中,使用引号括起来的内容是字符串(str),不使用引号括起来的内容是数字(int 或 float)。
阅读全文