Update README.md

fix bug: `'''` means multi-line output in print function
This commit is contained in:
Chao Zhang 2018-12-03 11:51:21 +08:00 committed by GitHub
parent 145a194c8b
commit e4268d1c6f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 2 deletions

5
README.md vendored
View File

@ -700,7 +700,7 @@ SyntaxError: invalid syntax
---
### ▶ Half triple-quoted strings
### ▶ Half triple-quoted strings (which is wrong in orinial version)
**Output:**
```py
@ -712,7 +712,8 @@ wtfpython
>>> # print('''wtfpython')
>>> # print("""wtfpython")
```
(by zc_):
in fact, `print wtfpython'` will not raise Error, it will wait you to enter another `'''` as the end of multi-line string.
#### 💡 Explanation:
+ Python supports implicit [string literal concatenation](https://docs.python.org/2/reference/lexical_analysis.html#string-literal-concatenation), Example,
```