09-05-周五_10-56-06

This commit is contained in:
2025-09-05 10:56:06 +08:00
parent 4a419b65e1
commit bc3c8e4a7a

View File

@@ -122,7 +122,7 @@ print(type(b))
在 Python 中, 加了引号的字符都被认为是字符串!
```python
a = "Eagle's Lab"
a = "大家好"
b = '''
欢迎大家!
今天我们学习python!'''
@@ -133,7 +133,7 @@ print(a,b)
运行结果
```python
Eagle's Lab
大家好
欢迎大家!
今天我们学习python!
```