create account

Python字符串引号的小问题 / 多个朋友多条路 by oflyhigh

View this thread on: hive.blogpeakd.comecency.com
· @oflyhigh ·
$142.69
Python字符串引号的小问题 / 多个朋友多条路
在之前的系列帖子中:
* [一起来玩内部市场吧!/ Let's play the internal market](https://steemit.com/cn/@oflyhigh/let-s-play-the-internal-market) 
* [一起来玩内部市场吧(二)!/ Market history APIs by example](https://steemit.com/steemdev/@oflyhigh/market-history-apis-by-example) 
* [一起来玩内部市场吧(三)!/ Program trading](https://steemit.com/steemdev/@oflyhigh/program-trading) 

我通过例子介绍了一些API的用法。

![hands-2706109_960_720.jpg](https://steemitimages.com/DQmcmxhnjLpeEcxCVJFDrEg49XQdJerp9ycTUsRGTidEpUJ/hands-2706109_960_720.jpg)



# API示例

简单挑选几个列举如下:

####  获取市场报价
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["market_history_api", "get_ticker", []], "id": 1}' https://steemd.steemit.com`

又比如:
#### 获取指定用户当前挂单信息
`curl -s --data '{"jsonrpc": "2.0", "method": "call", "params": ["database_api", "get_open_orders", ["deanliu"]], "id": 1}' https://steemd.steemit.com`


其实还有很多有用的API,比如说:
#### 获取账户信息的
`curl -s  --data '{"jsonrpc": "2.0", "method": "call", "params": ["database_api", "get_accounts", [["oflyhigh"]]], "id": 1}' https://steemd.steemit.com`

# API `"params"` 组成

更多的API介绍,不是我们这篇文章的主题,我想说的是我调试程序过程中遇到的一个事情。

如上述API示例中所描述的那样,去掉固定部分,其实`"params"`部分是固定的用逗号分隔的三部分组成,比如上述例子中的`"params"`部分:

`"market_history_api", "get_ticker", []`
`"database_api", "get_open_orders", ["deanliu"]`
`"database_api", "get_accounts", [["oflyhigh"]]`

# 遇到的问题

问题就出在第三部分上。

我想把第三部分 ["deanliu"]用变量的方式传递给固定的字符串模板,然后组合出上述API调用。

其中核心代码如下:
```
list = ["deanliu"]
str = str(list)
print(str)
```
![](https://steemitimages.com/DQmdVMExnTLXmmXpKGBpVanL5rkWLfB2dDxcjN8DiNQJiEC/image.png)

看到这个结果我就哭了😭
* 我想得到是这样的字符串:***`'["deanliu"]'`***
* 结果得到是这样的字符串:***`"['deanliu']"`***

这就有些尴尬了,因为第二字符串传递到模板里会导致错误的结果。

# 寻求帮助

作为一个初学者,我研究了半天,也没有找到合适的方式来解决这个问题,我甚至准备写一段代码来对得到的字符串进行转换,但是能否实现先不说,我总觉得这样的处理方式不优雅。

恰巧看我的一个QQ群里有几个夜猫子闲聊,其中一个QQ好友据我所知玩过很长时间的Python,我把上述例子发给他,并向他求教,如何把***`"['deanliu']"`***转换成***`'["deanliu"]'`***,他马上给我回复说试试***json.dumps***

于是我改写了上述例子变成了这样:
```
import json
list = ["deanliu"]
str = json.dumps(list)
print(str)
```
![](https://steemitimages.com/DQmbgv8o5DCpJZ88s33E9iuKipW48BTatAyVDqCX6dM2PaZ/image.png)
完美地解决了我的问题。


# 结论

这个问题,对于高手(比如我这个朋友)而言,就是一句话解决。

而如若没有他的指点,我可能耗费数个小时的时间来寻找解决方法,并且极有可能用极其不优雅的方式实现。


***多个朋友多条路***, 古之人诚不欺我!

(封面图源 :[pixabay](https://pixabay.com))
👍  , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , , and 183 others
properties (23)
authoroflyhigh
permlink7graka-python
categoryjson
json_metadata{"tags":["json","python","friendship","cn","cn-programming"],"image":["https://steemitimages.com/DQmcmxhnjLpeEcxCVJFDrEg49XQdJerp9ycTUsRGTidEpUJ/hands-2706109_960_720.jpg","https://steemitimages.com/DQmdVMExnTLXmmXpKGBpVanL5rkWLfB2dDxcjN8DiNQJiEC/image.png","https://steemitimages.com/DQmbgv8o5DCpJZ88s33E9iuKipW48BTatAyVDqCX6dM2PaZ/image.png"],"links":["https://steemit.com/cn/@oflyhigh/let-s-play-the-internal-market","https://steemit.com/steemdev/@oflyhigh/market-history-apis-by-example","https://steemit.com/steemdev/@oflyhigh/program-trading","https://pixabay.com"],"app":"steemit/0.1","format":"markdown"}
created2017-10-23 09:04:03
last_update2017-10-23 09:04:03
depth0
children30
last_payout2017-10-30 09:04:03
cashout_time1969-12-31 23:59:59
total_payout_value117.788 HBD
curator_payout_value24.906 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length2,233
author_reputation6,307,182,306,853,118
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,364,689
net_rshares61,722,684,635,821
author_curate_reward""
vote details (247)
@abupasi.alachy ·
Amazing.
properties (22)
authorabupasi.alachy
permlinkre-oflyhigh-7graka-python-20171023t092059118z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 09:20:51
last_update2017-10-23 09:20:51
depth1
children0
last_payout2017-10-30 09:20:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation5,557,880,714,706
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,365,587
net_rshares0
@agussafrizal ·
Good job ,,, 
I upvote 100% your post 
Please you  are visit my blog
properties (22)
authoragussafrizal
permlinkre-oflyhigh-7graka-python-20171023t095506719z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 09:53:15
last_update2017-10-23 09:53:15
depth1
children0
last_payout2017-10-30 09:53:15
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length68
author_reputation6,894,576,965,656
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,367,309
net_rshares0
@bigyellow ·
我就是来点个赞,O哥你写的实在是让我看了头晕。哈哈
properties (22)
authorbigyellow
permlinkre-oflyhigh-7graka-python-20171024t061539330z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 06:15:42
last_update2017-10-24 06:15:42
depth1
children1
last_payout2017-10-31 06:15:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation7,347,169,841,366
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,429,110
net_rshares0
@oflyhigh ·
谢谢啦:)
properties (22)
authoroflyhigh
permlinkre-bigyellow-re-oflyhigh-7graka-python-20171024t103253508z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 10:32:54
last_update2017-10-24 10:32:54
depth2
children0
last_payout2017-10-31 10:32:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation6,307,182,306,853,118
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,444,102
net_rshares0
@bigyellow ·
$0.63
我就是来点个赞,O哥你写的实在是让我看了头晕。哈哈
👍  
properties (23)
authorbigyellow
permlinkre-oflyhigh-7graka-python-20171024t062532848z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 06:25:36
last_update2017-10-24 06:25:36
depth1
children1
last_payout2017-10-31 06:25:36
cashout_time1969-12-31 23:59:59
total_payout_value0.476 HBD
curator_payout_value0.158 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation7,347,169,841,366
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,429,670
net_rshares276,379,980,870
author_curate_reward""
vote details (1)
@oflyhigh ·
哈哈,回了两遍,我都头晕了
properties (22)
authoroflyhigh
permlinkre-bigyellow-re-oflyhigh-7graka-python-20171024t103332255z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 10:33:42
last_update2017-10-24 10:33:42
depth2
children0
last_payout2017-10-31 10:33:42
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation6,307,182,306,853,118
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,444,145
net_rshares0
@chenlocus ·
不错,我也挺喜欢
properties (22)
authorchenlocus
permlinkre-oflyhigh-20171023t20206809z
categoryjson
json_metadata{"tags":"json","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-10-23 09:20:09
last_update2017-10-23 09:20:09
depth1
children0
last_payout2017-10-30 09:20:09
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length8
author_reputation127,626,795,379,674
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,365,553
net_rshares0
@deanliu ·
$1.74
How old am I?
👍  , ,
properties (23)
authordeanliu
permlinkre-oflyhigh-7graka-python-20171023t094841532z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 09:48:48
last_update2017-10-23 09:48:48
depth1
children6
last_payout2017-10-30 09:48:48
cashout_time1969-12-31 23:59:59
total_payout_value1.309 HBD
curator_payout_value0.433 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length13
author_reputation3,088,576,810,035,728
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,367,085
net_rshares754,135,747,654
author_curate_reward""
vote details (3)
@jubi ·
$0.02
>怎么老是你?

显然你们之间有不可描述的关系。
👍  
properties (23)
authorjubi
permlinkre-deanliu-re-oflyhigh-7graka-python-20171023t101233236z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 10:14:09
last_update2017-10-23 10:14:09
depth2
children0
last_payout2017-10-30 10:14:09
cashout_time1969-12-31 23:59:59
total_payout_value0.019 HBD
curator_payout_value0.005 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length24
author_reputation82,406,494,254,467
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,368,382
net_rshares11,690,345,613
author_curate_reward""
vote details (1)
@oflyhigh ·
$0.03
Because we are friends.
多个朋友,多个栗子!
👍  
properties (23)
authoroflyhigh
permlinkre-deanliu-re-oflyhigh-7graka-python-20171023t104253758z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 10:42:57
last_update2017-10-23 10:42:57
depth2
children4
last_payout2017-10-30 10:42:57
cashout_time1969-12-31 23:59:59
total_payout_value0.020 HBD
curator_payout_value0.006 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length34
author_reputation6,307,182,306,853,118
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,369,930
net_rshares12,221,724,960
author_curate_reward""
vote details (1)
@lydiachan ·
就像劉姊姊很常出現當例子<del>(栗子)</del>一樣~ @@
properties (22)
authorlydiachan
permlinkre-oflyhigh-re-deanliu-re-oflyhigh-7graka-python-20171023t111913736z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 11:19:21
last_update2017-10-23 11:19:21
depth3
children2
last_payout2017-10-30 11:19:21
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length33
author_reputation38,600,108,764,289
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,371,979
net_rshares0
@rivalhw ·
举个栗子
properties (22)
authorrivalhw
permlinkre-oflyhigh-re-deanliu-re-oflyhigh-7graka-python-20171024t103056472z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 10:30:54
last_update2017-10-24 10:30:54
depth3
children0
last_payout2017-10-31 10:30:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length4
author_reputation1,788,998,838,466,627
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,443,987
net_rshares0
@ghorardim ·
great job....thanks for shearing
properties (22)
authorghorardim
permlinkre-oflyhigh-7graka-python-20171023t091718819z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 09:17:24
last_update2017-10-23 09:17:24
depth1
children0
last_payout2017-10-30 09:17:24
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length32
author_reputation2,328,199,508,448
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,365,402
net_rshares0
@jubi ·
o哥 我有啥问题就问你了
至于能不能解决 就看你和你朋友了。
哈哈 :)
properties (22)
authorjubi
permlinkre-oflyhigh-7graka-python-20171023t094334792z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 09:43:45
last_update2017-10-23 09:43:45
depth1
children1
last_payout2017-10-30 09:43:45
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation82,406,494,254,467
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,366,815
net_rshares0
@oflyhigh ·
First of all, we need to be friends.
成为朋友的前提,一般是给我发好多好多好多红包 .......
properties (22)
authoroflyhigh
permlinkre-jubi-re-oflyhigh-7graka-python-20171023t104447890z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 10:44:54
last_update2017-10-23 10:44:54
depth2
children0
last_payout2017-10-30 10:44:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length67
author_reputation6,307,182,306,853,118
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,370,042
net_rshares0
@kawsardj ·
I think post has been very good. If there are some education issues, then we need to see them well and understand the boards and make a good command, your post is very good.
properties (22)
authorkawsardj
permlinkre-oflyhigh-7graka-python-20171025t060213043z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-25 06:01:54
last_update2017-10-25 06:01:54
depth1
children0
last_payout2017-11-01 06:01:54
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length173
author_reputation-492,902,763,486
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,506,471
net_rshares0
@metinyolcu ·
ÜYE OL

http://www.7x.com.tr/?idX=4282&idXRef=

Anahtar Teslim Hazır Web Sitesi

http://www.xticaret.com/xticaret/?2271_84214

Anket Rehberi

http://www.xticaret.com/xticaret/?258_84214

ULTRA HIZLI ZAYIFLAMA

http://www.xticaret.com/xticaret/?2381_84214

Borsa Koçu Dijital Eğitim Kitabı(

http://www.xticaret.com/xticaret/?1154_84214

borsa ky teknik analiz ve bilgileri Dijital Eğitim Kitabı

http://www.xticaret.com/xticaret/?1209_84214

Mudo Satış Kampanyası

http://www.xticaret.com/xticaret/?2024_84214

Lescon Satış Kampanyası

http://www.xticaret.com/xticaret/?2316_84214

ParaTube Sistemi

http://www.xticaret.com/xticaret/?2336_84214

Erken Boşalma Tedavisi ve Penis Büyütme Görsel Eğitim Seti

http://www.xticaret.com/xticaret/?2290_84214

Youtube Kazanç Kitabı

http://www.xticaret.com/xticaret/?2325_84214
👎  ,
properties (23)
authormetinyolcu
permlinkre-oflyhigh-7graka-python-20171023t180912935z
categoryjson
json_metadata{"tags":["json"],"links":["http://www.7x.com.tr/?idX=4282&amp;idXRef=","http://www.xticaret.com/xticaret/?2271_84214","http://www.xticaret.com/xticaret/?258_84214","http://www.xticaret.com/xticaret/?2381_84214","http://www.xticaret.com/xticaret/?1154_84214","http://www.xticaret.com/xticaret/?1209_84214","http://www.xticaret.com/xticaret/?2024_84214","http://www.xticaret.com/xticaret/?2316_84214","http://www.xticaret.com/xticaret/?2336_84214","http://www.xticaret.com/xticaret/?2290_84214","http://www.xticaret.com/xticaret/?2325_84214"],"app":"steemit/0.1"}
created2017-10-23 18:09:12
last_update2017-10-23 18:09:12
depth1
children0
last_payout2017-10-30 18:09:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length819
author_reputation-447,102,137,019
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,390,304
net_rshares-56,844,426,712
author_curate_reward""
vote details (2)
@moorkedi ·
Thanks a lot for this great post..BR
properties (22)
authormoorkedi
permlinkre-oflyhigh-7graka-python-20171023t101347770z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 10:13:51
last_update2017-10-23 10:13:51
depth1
children0
last_payout2017-10-30 10:13:51
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length36
author_reputation4,354,280,945,178
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,368,370
net_rshares0
@myeasin ·
Wow amazing post carry on
properties (22)
authormyeasin
permlinkre-oflyhigh-7graka-python-20171024t034335811z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 03:43:48
last_update2017-10-24 03:43:48
depth1
children0
last_payout2017-10-31 03:43:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length25
author_reputation4,211,257,657,410
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,421,056
net_rshares0
@speeding ·
$0.61
google “python convert single quoted string to double”

https://stackoverflow.com/questions/1906991/convert-single-quoted-string-to-double-quoted-string
👍  ,
properties (23)
authorspeeding
permlinkre-oflyhigh-7graka-python-20171023t104929984z
categoryjson
json_metadata{"tags":["json"],"links":["https://stackoverflow.com/questions/1906991/convert-single-quoted-string-to-double-quoted-string"],"app":"steemit/0.1"}
created2017-10-23 10:49:36
last_update2017-10-23 10:49:36
depth1
children1
last_payout2017-10-30 10:49:36
cashout_time1969-12-31 23:59:59
total_payout_value0.461 HBD
curator_payout_value0.152 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length152
author_reputation1,172,222,545,920
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,370,313
net_rshares264,707,599,547
author_curate_reward""
vote details (2)
@oflyhigh ·
Thank you.
properties (22)
authoroflyhigh
permlinkre-speeding-re-oflyhigh-7graka-python-20171023t114327491z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 11:43:33
last_update2017-10-23 11:43:33
depth2
children0
last_payout2017-10-30 11:43:33
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length10
author_reputation6,307,182,306,853,118
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,373,219
net_rshares0
@sweet.colours ·
Great
👍  
properties (23)
authorsweet.colours
permlinkre-oflyhigh-20171023t16355844z
categoryjson
json_metadata{"tags":"json","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"}
created2017-10-23 11:36:00
last_update2017-10-23 11:36:00
depth1
children0
last_payout2017-10-30 11:36:00
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length5
author_reputation1,892,144,455,929
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries
0.
accountesteemapp
weight500
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,372,823
net_rshares98,648,214
author_curate_reward""
vote details (1)
@twinklesong ·
恩,以后遇到不懂的一定请教o哥大神😊
properties (22)
authortwinklesong
permlinkre-oflyhigh-7graka-python-20171024t082955077z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 08:29:57
last_update2017-10-24 08:29:57
depth1
children2
last_payout2017-10-31 08:29:57
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation402,287,364,260
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,436,721
net_rshares0
@oflyhigh ·
互相学习啦,把大神去掉,我是菜鸟 😭
properties (22)
authoroflyhigh
permlinkre-twinklesong-re-oflyhigh-7graka-python-20171024t103449333z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 10:34:48
last_update2017-10-24 10:34:48
depth2
children1
last_payout2017-10-31 10:34:48
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length18
author_reputation6,307,182,306,853,118
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,444,201
net_rshares0
@twinklesong ·
如果您都是菜鸟,那我只能算是个小肉虫了😂
properties (22)
authortwinklesong
permlinkre-oflyhigh-re-twinklesong-re-oflyhigh-7graka-python-20171024t105115415z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-24 10:51:18
last_update2017-10-24 10:51:18
depth3
children0
last_payout2017-10-31 10:51:18
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length20
author_reputation402,287,364,260
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,445,196
net_rshares0
@victory622 ·
$0.60
有好多问题都是自己折腾半天还搞不定,然后问了朋友以后才发现,人家一句话就能给你解决了。
👍  
properties (23)
authorvictory622
permlinkre-oflyhigh-7graka-python-20171023t100758843z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 10:07:57
last_update2017-10-23 10:07:57
depth1
children2
last_payout2017-10-30 10:07:57
cashout_time1969-12-31 23:59:59
total_payout_value0.452 HBD
curator_payout_value0.150 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length43
author_reputation132,772,573,652,848
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,368,064
net_rshares261,980,656,826
author_curate_reward""
vote details (1)
@oflyhigh ·
Most importantly, they are willing to help you.
比如马云一句话,就能让我有好多钱 😭
properties (22)
authoroflyhigh
permlinkre-victory622-re-oflyhigh-7graka-python-20171023t104702900z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 10:47:12
last_update2017-10-23 10:47:12
depth2
children1
last_payout2017-10-30 10:47:12
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length66
author_reputation6,307,182,306,853,118
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,370,171
net_rshares0
@victory622 ·
Can't agree with you more!!!
properties (22)
authorvictory622
permlinkre-oflyhigh-re-victory622-re-oflyhigh-7graka-python-20171023t115930157z
categoryjson
json_metadata{"tags":["json"],"app":"steemit/0.1"}
created2017-10-23 11:59:27
last_update2017-10-23 11:59:27
depth3
children0
last_payout2017-10-30 11:59:27
cashout_time1969-12-31 23:59:59
total_payout_value0.000 HBD
curator_payout_value0.000 HBD
pending_payout_value0.000 HBD
promoted0.000 HBD
body_length28
author_reputation132,772,573,652,848
root_title"Python字符串引号的小问题 / 多个朋友多条路"
beneficiaries[]
max_accepted_payout1,000,000.000 HBD
percent_hbd10,000
post_id18,374,018
net_rshares0