我试了一下,是有效的.
a_dct = {
'key': 'value to looooooooooooooooooooong'
'looooooooooooooooooooooooooooooong',
'another_key':'no error happened'
}
大概是这个意思. 另外 有道做图床 是我在B站看到一个up主这么做的. 哎 没想到娃...原来不行.
1
ClericPy 2020-05-14 21:12:07 +08:00 1
{
"canTryAgain": false, "scope": "SECURITY", "error": "207", "message": "Message[AUTHENTICATION_FAILURE]: User token must be authenticated.", "objectUser": null } |
2
lithbitren 2020-05-14 21:12:44 +08:00 2
看不到图,为啥我在 v2 经常看不到图。。
|
3
wellsc 2020-05-14 21:14:05 +08:00 1
虽然不知道你在说什么,但是觉得好厉害的样子
|
4
wjm2038 2020-05-14 21:14:23 +08:00 via Android 1
图没了
|
5
cherbim 2020-05-14 21:19:52 +08:00 1
换个图床
|
6
Cusmate 2020-05-14 21:22:14 +08:00 1
图片不显示了,AUTHENTICATION_FAILURE
|
7
chaleaoch OP |
8
Trim21 2020-05-14 21:41:08 +08:00
不行
|
9
Cuo 2020-05-14 21:45:28 +08:00
楼主感到疑惑的地方是字符串可以分成两行来写吗?
|
10
hakono 2020-05-14 21:46:38 +08:00 1
|
11
Cuo 2020-05-14 21:49:03 +08:00 1
为了看不到图的 V 友
```python HOGE = { 'FOO': r'^([0-9]|[1-9]\d|' r'[1-5]\d{4}|6[0-4]', 'HEGO': 'string' } ``` 图上的内容大致是这么个意思 |
12
ila 2020-05-14 21:49:52 +08:00 via Android
盲猜 value 变成了 tuple
|
13
lithbitren 2020-05-14 22:08:44 +08:00 1
盲猜字符串不用加号也能拼接,而且换行空格缩进不影响拼接
|
14
ClericPy 2020-05-14 22:11:02 +08:00 1
字符串本来就可以不用加号拼接
string - Wrap long lines in Python - Stack Overflow - https://stackoverflow.com/questions/3346230/wrap-long-lines-in-python google 搜 python string too long 就行了 |
15
imn1 2020-05-15 01:32:36 +08:00
我经常这样写
还可以字节类型 b'……' '……' '……' '……', 场合:一个 base64 编码的文件…… |
16
imn1 2020-05-15 01:36:15 +08:00
呃,上面写错了,每行前面都要 b 开头,不然会报错
|
17
laike9m 2020-05-15 02:32:16 +08:00 2
一般建议这么写
a_dct = { 'key': ('value to looooooooooooooooooooong' 'looooooooooooooooooooooooooooooong'), 'another_key':'no error happened' } 加上括号 |
18
zhidian 2020-05-15 02:48:24 +08:00
C 语言来的。
|
19
zhidian 2020-05-15 02:50:19 +08:00 1
|
20
ysc3839 2020-05-15 08:52:15 +08:00 via Android
大概是继承自 C 语言的规则。
|
21
no1xsyzy 2020-05-15 09:46:36 +08:00 1
这个甚至可以混杂 f-string r-string 甚至 three quote string
print("normal string\n" r"r-string, but \n is just \n" ", for LF use another normal string at end\n" f"f-string, {2+3=}\n" f"""three-quote f-string{ " ".join(str(i) for i in range(10)) }""") |
22
bwangel 2020-05-15 10:09:39 +08:00 1
|