20.14. 引用-引用-代码
> aaa
>> bbb
>>> ```python
text1 = "Hello, "
text2 = "world!"
print text1 + text2
```
效果
aaa
bbb
text1 = "Hello, " text2 = "world!" print text1 + text2
> aaa
>> bbb
>>> ```python
text1 = "Hello, "
text2 = "world!"
print text1 + text2
```
效果
aaa
bbb
text1 = "Hello, " text2 = "world!" print text1 + text2