1
0
mirror of https://github.com/satwikkansal/wtfpython synced 2024-06-09 14:47:48 +02:00

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

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:** **Output:**
```py ```py
@ -712,7 +712,8 @@ wtfpython
>>> # print('''wtfpython') >>> # print('''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: #### 💡 Explanation:
+ Python supports implicit [string literal concatenation](https://docs.python.org/2/reference/lexical_analysis.html#string-literal-concatenation), Example, + Python supports implicit [string literal concatenation](https://docs.python.org/2/reference/lexical_analysis.html#string-literal-concatenation), Example,
``` ```