作为Python的初学者,基本上是遇到啥需求,就现去学习,能解决问题就可以。 比如前段时间,做的一个小程序,需要并发处理一些操作,所以就想到了使用线程的概念。  # _thread 模块 上网学习了一下 https://docs.python.org/3/library/_thread.html `_thread.start_new_thread(function, args[, kwargs])` 这个貌似很简单 因为我的程序把线程启动起来就可以,然后就自己做自己的事情,做完就退出,对全局的东西不需要进行改变,所以也用不到线程锁之类的概念。 我用这个模块实现了我的程序,良好地运行了很长一段时间,完全符合我的要求。 # threading 模块 前些天有个新任务,同样需要用到线程。不同的是,我程序中需要用到当前在执行的线程数量,当数量超过我定义的限制,就暂停启动新线程,直到其它线程有结束的,当前线程数量下降。 我想到的方法设置一个全局变量: 线程启动,变量加一; 线程退出,变量减一。 为了防止几个线程同时读写的情况,需要在对变量操作的时候加锁,操作完成释放。 然后我主线程中访问这个变量,判断当前运行中线程的数量 听起来似乎可行,然后我边去学习怎么加锁和释放 然后,我才发现我用_thread被叫做低级( low-level)模块, 而高级(higher-level)模块threading直接提供了 `threading.active_count()` https://docs.python.org/3/library/threading.html 既然有了高级模块,咱就别自己造轮子啦。 然后就要去研究一下这个threading 模块咋用啦,结果发现还整出两种使用方法: ##### 方法一: `threading.Thread(group=None, target=None, name=None, args=(), kwargs={}, *, daemon=None)` 方法一的方式和`_thread.start_new_thread`比较类似。 ##### 方法二: 从Thread继承,并重写run()方法 我选择方法二的方式实现我的程序 `class myThread (threading.Thread):` 在 `__init__`中传入要处理的参数 在`run`做我要做的处理 在程序中这样启动线程: `thread = myThread(arg_a, arg_b, arg_c)` `thread.start()` 在程序中使用: `threading.active_count()`判断数量 程序运行了几天,最多时候几十个线程再跑,工作状况良好,完全达到预期。 # GIL 在了解和学习Python多线程过程中,看到不少对Python多线程的争议。尤其是在多CPU和多核处理器环境下,没法充分利用CPU资源,确切地说,只能可一个CPU霍霍。 究其原因,是因为Python原始解释器CPython中使用了***GIL (Global Interpreter Lock,全局解释器锁)***来限制线程对共享资源的访问,同一时间只会有一个获得GIL的线程在跑,其他线程则处于等待状态。与其说是多线程,更像是时间片调度,当然了,具体调度方法肯定是更复杂和更科学的。 因为这个GIL的存在,Python多线程,没法真正的并行处理,而是并发处理。对于CPU密集型任务,如果使用多线程,因为GIL的存在导致除了不能利用多核多CPU的优势,反而要浪费时间在线程间切来切去,效率会变得低下。而对于IO密集型任务,因为IO浪费的时间比较多,所以使用多线程是会提升效率的。 看了下我的程序,嗯,还好,都是网络访问的,至少用多线程实现起来很方便,事实也证明很好用。 至于Python下怎么利用多核或者多CPU,据说是使用多进程。 但是我暂时没有这种需要,毕竟,我的原则是,好用就行,折腾啥呀。 另外,关于并发处理,还有可以参考这里: https://docs.python.org/3/library/asyncio.html 看起来挺高大上的,不明觉厉。 有关GIL可以参考: https://wiki.python.org/moin/GlobalInterpreterLock 就这样啦,代码啥的就不贴出来充数了。 网上示例一大堆,大家感兴趣的自己去看看好了。 # 参考资料: * https://docs.python.org/3/library/_thread.html * https://docs.python.org/3/library/threading.html * https://wiki.python.org/moin/GlobalInterpreterLock * https://docs.python.org/3/library/asyncio.html * http://www.wellho.net/solutions/python-python-threads-a-first-example.html * https://www.tutorialspoint.com/python/python_multithreading.htm * https://stackoverflow.com/questions/2846653/how-to-use-threading-in-python * http://www.python-course.eu/threads.php
author | oflyhigh |
---|---|
permlink | python3-and-gil |
category | cn |
json_metadata | {"tags":["cn","cn-programming","python"],"image":["https://steemitimages.com/DQmd49dm5bKty2sUUE8hHpiAYFhBiTMjerpSbBojdJdWYGK/image.png"],"links":["https://docs.python.org/3/library/_thread.html","https://docs.python.org/3/library/threading.html","https://docs.python.org/3/library/asyncio.html","https://wiki.python.org/moin/GlobalInterpreterLock","http://www.wellho.net/solutions/python-python-threads-a-first-example.html","https://www.tutorialspoint.com/python/python_multithreading.htm","https://stackoverflow.com/questions/2846653/how-to-use-threading-in-python","http://www.python-course.eu/threads.php"],"app":"steemit/0.1","format":"markdown"} |
created | 2017-08-20 11:03:51 |
last_update | 2017-08-20 11:03:51 |
depth | 0 |
children | 31 |
last_payout | 2017-08-27 11:03:51 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 259.232 HBD |
curator_payout_value | 52.990 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 2,435 |
author_reputation | 6,344,336,061,337,513 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,338,296 |
net_rshares | 83,416,727,648,754 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
pharesim | 0 | 106,627,509,021 | 0.25% | ||
abit | 0 | 38,738,019,015,849 | 55% | ||
ihashfury | 0 | 31,417,329,861 | 26% | ||
boy | 0 | 2,780,403,004 | 100% | ||
xeroc | 0 | 2,003,855,110,260 | 100% | ||
bue-witness | 0 | 3,390,231,920 | 100% | ||
bunny | 0 | 461,658,077 | 100% | ||
bue | 0 | 108,455,522,196 | 100% | ||
mini | 0 | 1,486,079,257 | 100% | ||
moon | 0 | 212,563,034 | 100% | ||
healthcare | 0 | 553,816,506 | 100% | ||
daniel.pan | 0 | 876,150,697 | 100% | ||
helen.tan | 0 | 163,088,970 | 100% | ||
jademont | 0 | 189,401,394,154 | 100% | ||
coinbitgold | 0 | 165,468,520,052 | 80% | ||
wongshiying | 0 | 28,972,330,452 | 100% | ||
mark-waser | 0 | 212,219,930,124 | 100% | ||
geoffrey | 0 | 608,467,945,633 | 33% | ||
true-profit | 0 | 1,119,285,054 | 100% | ||
slowwalker | 0 | 1,193,113,829,034 | 12% | ||
livingfree | 0 | 2,030,211,561,712 | 39% | ||
juvyjabian | 0 | 1,382,110,964 | 3% | ||
fundurian | 0 | 32,425,357,082 | 25% | ||
fiveboringgames | 0 | 126,393,681,853 | 33% | ||
deanliu | 0 | 835,246,030,710 | 100% | ||
rea | 0 | 293,977,346,694 | 25% | ||
joythewanderer | 0 | 59,888,442,717 | 42% | ||
lemooljiang | 0 | 61,716,360,483 | 26% | ||
ace108 | 0 | 411,799,125,072 | 25% | ||
tensaix2j | 0 | 2,555,516,326 | 100% | ||
lsc9999 | 0 | 118,681,836,083 | 100% | ||
craigslist | 0 | 374,738,601 | 100% | ||
syahrul | 0 | 232,334,727 | 100% | ||
magicmonk | 0 | 19,003,493,238 | 100% | ||
dez1337 | 0 | 29,969,291,593 | 49% | ||
letc | 0 | 1,469,367,824 | 20% | ||
laoyao | 0 | 33,825,421,985 | 100% | ||
cryptoninja | 0 | 169,230,757 | 1.8% | ||
somebody | 0 | 1,399,475,371,171 | 100% | ||
feelapi | 0 | 3,959,588,524 | 60% | ||
skysunny | 0 | 908,879,685 | 100% | ||
midnightoil | 0 | 180,001,591,408 | 100% | ||
btsabc | 0 | 74,475,987,500 | 100% | ||
xiaohui | 0 | 962,763,660,741 | 100% | ||
silentlucidity53 | 0 | 3,973,254,219 | 75% | ||
oflyhigh | 0 | 2,510,504,114,173 | 100% | ||
xiaokongcom | 0 | 16,146,827,426 | 100% | ||
hanshotfirst | 0 | 155,393,513,585 | 5% | ||
rivalhw | 0 | 119,614,413,862 | 50% | ||
nextgen622 | 0 | 865,226,514,180 | 100% | ||
chinadaily | 0 | 268,125,895,826 | 100% | ||
helene | 0 | 317,630,914,969 | 100% | ||
ffcrossculture | 0 | 20,878,485,311 | 100% | ||
ethansteem | 0 | 527,897,491,014 | 100% | ||
sweetsssj | 0 | 3,486,615,662,148 | 10% | ||
netaterra | 0 | 13,280,939,321 | 100% | ||
bestmz | 0 | 20,225,905,551 | 100% | ||
tumutanzi | 0 | 1,449,973,987,207 | 10% | ||
larus | 0 | 300,578,645 | 100% | ||
englishtchrivy | 0 | 97,063,741,438 | 25% | ||
davidjkelley | 0 | 9,993,597,596 | 100% | ||
digital-wisdom | 0 | 88,040,008,010 | 100% | ||
ethical-ai | 0 | 7,670,377,484 | 100% | ||
cornerstone | 0 | 426,227,810,098 | 36% | ||
titusfrost | 0 | 32,933,232,226 | 10% | ||
jwaser | 0 | 53,459,160,170 | 100% | ||
shieha | 0 | 268,137,462,963 | 100% | ||
profitgenerator | 0 | 11,829,070,705 | 100% | ||
ebargains | 0 | 15,989,990,010 | 10% | ||
bwaser | 0 | 12,544,649,043 | 100% | ||
ellepdub | 0 | 17,351,276,847 | 100% | ||
arama | 0 | 1,985,700,073,803 | 35% | ||
herpetologyguy | 0 | 409,103,315,829 | 100% | ||
morgan.waser | 0 | 22,156,171,115 | 100% | ||
kimecerw | 0 | 200,731,449 | 100% | ||
ballarussailas | 0 | 200,706,989 | 100% | ||
modirndarkeye | 0 | 198,660,150 | 100% | ||
anayarnrexbrew | 0 | 199,254,953 | 100% | ||
anayaniuszulugis | 0 | 191,529,050 | 100% | ||
handyman | 0 | 9,932,299,124 | 100% | ||
strong-ai | 0 | 24,886,073,412 | 100% | ||
stacee | 0 | 62,549,834,731 | 100% | ||
danigirl | 0 | 72,590,931,991 | 100% | ||
steemtruth | 0 | 42,457,775,594 | 10% | ||
jonjon1 | 0 | 30,630,677,852 | 100% | ||
lalala | 0 | 43,797,052,334 | 100% | ||
black-eye | 0 | 83,334,324 | 100% | ||
stray | 0 | 26,478,771,017 | 100% | ||
amat | 0 | 286,103,354 | 50% | ||
judasp | 0 | 60,137,873,167 | 100% | ||
jmehta | 0 | 1,105,857,048 | 100% | ||
streetartgallery | 0 | 6,509,054,662 | 50% | ||
gentlejack | 0 | 454,037,312 | 100% | ||
devilwsy | 0 | 2,476,631,652 | 100% | ||
janiceting | 0 | 2,474,746,521 | 100% | ||
lydiachan | 0 | 52,500,859,418 | 100% | ||
technoprogressiv | 0 | 23,946,855,476 | 100% | ||
enchant | 0 | 1,580,095,709 | 100% | ||
dragon40 | 0 | 3,630,346,604 | 10% | ||
timool | 0 | 1,335,263,745 | 100% | ||
blackbunny | 0 | 40,027,745,472 | 100% | ||
jubi | 0 | 17,147,012,754 | 100% | ||
steemav | 0 | 1,389,148,228 | 100% | ||
ejemai | 0 | 8,193,729,673 | 100% | ||
bxt | 0 | 58,959,750,969 | 100% | ||
lingfei | 0 | 83,861,590,459 | 100% | ||
yyyy | 0 | 15,732,282,528 | 100% | ||
normanvortex | 0 | 1,719,872,118 | 100% | ||
cyfi | 0 | 11,289,259,640 | 100% | ||
carbunco10 | 0 | 162,096,710 | 100% | ||
trafalgar | 0 | 2,011,235,541,756 | 9% | ||
laodr | 0 | 69,159,548,613 | 100% | ||
austinsandersco | 0 | 112,312,557,236 | 70% | ||
revizor | 0 | 533,168,093 | 100% | ||
elevator09 | 0 | 4,858,985,981 | 25% | ||
nanokat | 0 | 533,201,526 | 100% | ||
usp | 0 | 533,205,448 | 100% | ||
plennik | 0 | 533,951,315 | 100% | ||
tolkun92off | 0 | 533,232,796 | 100% | ||
viperk | 0 | 498,576,820 | 100% | ||
aismor | 0 | 805,422,536 | 100% | ||
marxrab | 0 | 3,013,984,285 | 8% | ||
laspoundpo | 0 | 533,275,402 | 100% | ||
dashawnalley | 0 | 533,284,515 | 100% | ||
khalilwalton | 0 | 534,028,992 | 100% | ||
hammadakhtar | 0 | 1,169,452,991 | 10% | ||
syn999 | 0 | 69,098,361,912 | 100% | ||
htliao | 0 | 6,517,918,994,300 | 36% | ||
gordonovich | 0 | 1,042,769,025 | 5% | ||
aarkay | 0 | 1,183,012,770 | 100% | ||
wbulot | 0 | 26,308,907,969 | 100% | ||
emcvay | 0 | 819,846,938 | 10% | ||
gurudeva | 0 | 20,392,416,908 | 100% | ||
manuel78 | 0 | 110,895,513 | 1% | ||
anubisthegaylord | 0 | 4,483,464,587 | 100% | ||
belleontherocks | 0 | 13,151,809,728 | 100% | ||
p2pgarden | 0 | 604,032,000 | 100% | ||
indepthstory | 0 | 18,001,334,596 | 100% | ||
ribalinux | 0 | 6,307,402,094 | 25% | ||
stackin | 0 | 8,700,965,606 | 1% | ||
onepics | 0 | 586,548,556 | 100% | ||
wylo | 0 | 633,229,602 | 100% | ||
wnh518518 | 0 | 29,200,358,534 | 100% | ||
susanlo | 0 | 52,440,305,662 | 100% | ||
jkkim | 0 | 35,057,969,156 | 10% | ||
ebejammin | 0 | 656,349,144,826 | 100% | ||
nanosesame | 0 | 8,401,299,427 | 100% | ||
rkaz | 0 | 2,173,378,966 | 100% | ||
lexiconical | 0 | 295,019,046 | 1% | ||
yvonnetse | 0 | 78,878,688,288 | 100% | ||
nuagnorab | 0 | 15,773,085,084 | 100% | ||
kitcat | 0 | 35,434,876,641 | 51% | ||
happychau123 | 0 | 5,165,214,670 | 100% | ||
linuslee0216 | 0 | 5,985,685,080,274 | 30% | ||
revelim | 0 | 7,409,646,145 | 30% | ||
chl | 0 | 17,996,570,205 | 100% | ||
cryptohustler | 0 | 10,565,801,387 | 100% | ||
fatamorgan | 0 | 15,048,976,315 | 100% | ||
suitablybored | 0 | 2,346,001,313 | 100% | ||
wilkinshui | 0 | 37,279,824,380 | 100% | ||
exec | 0 | 85,888,866,347 | 100% | ||
eval | 0 | 866,652,118 | 100% | ||
keshawn | 0 | 205,352,468 | 18.37% | ||
hellstaf | 0 | 559,177,159 | 100% | ||
kadri | 0 | 651,802,608 | 100% | ||
siddm96 | 0 | 658,385,633 | 100% | ||
scottybuckets | 0 | 23,858,793,156 | 100% | ||
shenchensucc | 0 | 10,773,991,281 | 100% | ||
hkkim1030 | 0 | 9,375,743,842 | 100% | ||
nanogivers | 0 | 53,017,155 | 100% | ||
krischy | 0 | 29,355,764,054 | 100% | ||
hectorjoachim | 0 | 1,616,952,378 | 100% | ||
maulanailham | 0 | 655,106,486 | 100% | ||
kuyajhaymo | 0 | 291,497,271 | 100% | ||
liuke96player | 0 | 3,201,177,469 | 100% | ||
ronaldosborn | 0 | 1,160,704,420 | 100% | ||
jbp | 0 | 89,946,964 | 1% | ||
abhisheksaini008 | 0 | 597,876,650 | 100% | ||
samuelsunday | 0 | 115,876,362 | 100% | ||
asterix87 | 0 | 14,276,276,780 | 100% | ||
kevbot | 0 | 523,985,542 | 1% | ||
thewolfofwallst | 0 | 597,836,800 | 100% | ||
littlevoice | 0 | 3,212,474,126 | 100% | ||
yooraa | 0 | 583,275,997 | 100% | ||
abetterworld | 0 | 3,253,749,063 | 100% | ||
liflorence | 0 | 2,229,829,400 | 8% | ||
incrediblesnow | 0 | 6,327,472,756 | 100% | ||
runicar | 0 | 4,402,544,419 | 100% | ||
stonesteem | 0 | 2,042,886,597 | 100% | ||
mabre | 0 | 2,553,683,892 | 10% | ||
appleua | 0 | 620,843,160 | 100% | ||
ldauch | 0 | 11,503,798,490 | 100% | ||
sharoon | 0 | 990,211,019 | 100% | ||
okdubai | 0 | 718,034,511 | 100% | ||
devilcat | 0 | 399,943,275 | 100% | ||
hesami | 0 | 446,559,791 | 100% | ||
easytyga | 0 | 720,551,966 | 100% | ||
marcuswilliams | 0 | 108,459,361 | 50% | ||
cutris01 | 0 | 2,295,432,624 | 100% | ||
sweeti | 0 | 17,557,388,677 | 20% | ||
daniham | 0 | 68,889,333 | 100% | ||
mrpointp | 0 | 13,664,681,125 | 25% | ||
filipgrad | 0 | 508,006,400 | 100% | ||
yoyowhatsup | 0 | 526,592,000 | 100% | ||
that1consultant | 0 | 709,660,688 | 5.67% | ||
sanzo | 0 | 590,191,384 | 100% | ||
themystic | 0 | 15,281,773,001 | 100% | ||
stenyin | 0 | 574,278,140 | 100% | ||
doraemon | 0 | 538,457,270 | 100% | ||
davaowhenyo | 0 | 620,139,483 | 100% | ||
allenshayzar | 0 | 619,520,000 | 100% | ||
colmanlamkh | 0 | 1,289,687,379 | 100% | ||
travelgirl | 0 | 9,152,536,674 | 41% | ||
qed | 0 | 2,934,714,323 | 100% | ||
raku | 0 | 594,345,889 | 100% | ||
resteeming | 0 | 589,378,869 | 100% | ||
hotsteam | 0 | 589,254,407 | 100% | ||
ravenousappetite | 0 | 619,520,000 | 100% | ||
svein.forkbeard | 0 | 5,986,486,124 | 100% | ||
aaalejandro | 0 | 526,592,000 | 100% | ||
mamamyanmar | 0 | 274,769,497 | 47.25% | ||
raznar | 0 | 551,372,800 | 100% | ||
sanat | 0 | 250,273,375 | 100% | ||
shirlam | 0 | 1,909,518,114 | 100% | ||
auntigormint | 0 | 1,511,450,668 | 100% | ||
nickwalshblog | 0 | 1,220,106,302 | 100% | ||
superhardness | 0 | 8,976,884,393 | 100% | ||
traveldiaries | 0 | 239,904,126 | 100% | ||
mreko | 0 | 613,086,247 | 100% | ||
cheonillhwan | 0 | 615,242,581 | 100% | ||
awinyaksteemit | 0 | 169,982,467 | 100% | ||
nicolemoker | 0 | 3,094,235,366,874 | 15% | ||
azisjesika | 0 | 786,741,534 | 100% | ||
davidzack | 0 | 446,651,281 | 100% | ||
suci | 0 | 614,741,615 | 100% | ||
beulahlandeu | 0 | 548,710,324 | 100% | ||
bukhairidin | 0 | 405,709,158 | 100% | ||
sweethoney | 0 | 786,140,578 | 100% | ||
matthewpro7799 | 0 | 319,891,580 | 100% | ||
cryptousage | 0 | 7,045,138,035 | 100% | ||
iskandarpcc | 0 | 791,410,402 | 100% | ||
ramzialhaddadtm | 0 | 555,976,689 | 100% | ||
duekie | 0 | 551,026,191 | 100% | ||
idx | 0 | 11,434,665,994 | 55% | ||
ahmedkedd | 0 | 620,180,522 | 100% | ||
moersal | 0 | 491,996,575 | 100% | ||
exprmnt | 0 | 1,526,651,711 | 100% | ||
zest | 0 | 1,942,114,601 | 100% | ||
leogor1234 | 0 | 2,883,825,418 | 100% | ||
olegpalmer | 0 | 519,111,444 | 100% | ||
elconserje | 0 | 619,561,300 | 100% | ||
iarumas | 0 | 758,998,193 | 100% | ||
vichedvi | 0 | 529,866,131 | 100% | ||
herlife | 0 | 9,686,366,263 | 100% | ||
minimalpris | 0 | 1,201,575,202 | 100% | ||
hronn | 0 | 619,520,000 | 100% | ||
fakire1sadaka | 0 | 99,281,423 | 50% | ||
stomiranch | 0 | 619,520,000 | 100% | ||
rizhiggi | 0 | 1,160,664,434 | 100% | ||
khamil | 0 | 466,359,399 | 100% | ||
katkar | 0 | 286,126,478 | 100% | ||
alli.top | 0 | 129,202,328 | 100% | ||
entheogen | 0 | 597,836,800 | 100% | ||
turdenev | 0 | 619,520,000 | 100% | ||
buildrobotics | 0 | 213,570,524 | 100% | ||
malekalmsaddi | 0 | 4,972,608,946 | 100% | ||
amuel | 0 | 619,520,000 | 100% | ||
tvb | 0 | 1,123,338,366 | 100% | ||
siesnesies | 0 | 616,422,400 | 100% | ||
natalegmen | 0 | 619,520,000 | 100% | ||
ohonoshn | 0 | 619,520,000 | 100% | ||
resteem.bot | 0 | 347,665,640 | 100% | ||
rohanjale | 0 | 506,894,688 | 100% | ||
muhammadiqbhal | 0 | 503,093,990 | 78.59% | ||
azka-amillia | 0 | 327,661,263 | 100% | ||
korob | 0 | 619,520,000 | 100% | ||
nuhave | 0 | 619,520,000 | 100% | ||
mixailzheltyshov | 0 | 616,422,400 | 100% | ||
solomonsojay | 0 | 443,111,289 | 50% | ||
juanferreira | 0 | 524,176,743 | 100% | ||
johnsmit | 0 | 610,414,487 | 100% | ||
zubairkhaan | 0 | 508,412,715 | 100% | ||
jane-doe | 0 | 8,488,441,297 | 100% | ||
akhybin | 0 | 619,520,000 | 100% | ||
darniyuscivil | 0 | 493,535,410 | 100% | ||
writer1 | 0 | 182,733,857 | 100% | ||
actionman | 0 | 1,091,052,003 | 100% | ||
drphysiatre | 0 | 1,007,888,571 | 100% | ||
freedom-fighter | 0 | 619,520,000 | 100% | ||
ramiashqar | 0 | 406,270,677 | 100% | ||
minecrew | 0 | 1,084,366,946 | 100% | ||
vlone99 | 0 | 1,072,396,858 | 100% | ||
redtea | 0 | 856,426,706 | 100% | ||
olem | 0 | 638,650,693 | 57.24% | ||
hossainsohag | 0 | 680,379,978 | 100% | ||
sanju | 0 | 911,106,225 | 100% | ||
gameoutcome | 0 | 847,270,561 | 100% | ||
benjy87 | 0 | 156,943,086 | 100% | ||
vicspics | 0 | 305,132,143 | 100% | ||
vektorall | 0 | 938,112,987 | 100% | ||
martinmusiol | 0 | 249,972,653 | 100% | ||
leonardosaud | 0 | 533,893,730 | 100% | ||
donah | 0 | 684,776,667 | 100% | ||
shehab427797 | 0 | 499,074,505 | 100% | ||
amitadit42 | 0 | 1,050,377,734 | 100% | ||
goodboyphilip | 0 | 969,133,039 | 100% | ||
pronab36 | 0 | 249,537,248 | 100% | ||
massey2100 | 0 | 1,050,377,716 | 100% | ||
moneyman121 | 0 | 116,063,831 | 100% | ||
demonicware | 0 | 800,840,405 | 100% | ||
ozyriusz | 0 | 208,914,855 | 100% | ||
alexrf | 0 | 742,806,535 | 100% | ||
norder | 0 | 824,050,965 | 100% | ||
vetonmisiri | 0 | 1,149,028,806 | 100% | ||
pulsar | 0 | 295,961,958 | 100% | ||
dgorbunov | 0 | 121,866,686 | 100% | ||
podanrj | 0 | 1,003,949,348 | 100% | ||
ma6375 | 0 | 1,143,225,511 | 100% | ||
jackoutdabox | 0 | 383,009,561 | 100% | ||
abdelhadi | 0 | 893,688,951 | 100% | ||
michaelmorcos | 0 | 1,003,949,036 | 100% | ||
ronaldsteemit89 | 0 | 365,599,929 | 100% | ||
kambojr15 | 0 | 580,317,324 | 100% | ||
leeya | 0 | 1,125,815,462 | 100% | ||
rofik | 0 | 545,498,179 | 100% | ||
gemsborg | 0 | 52,228,533 | 100% | ||
jalalani | 0 | 818,246,936 | 100% | ||
wahib.malik733 | 0 | 1,160,633,948 | 100% | ||
ghmboyan | 0 | 1,120,011,723 | 100% | ||
dmacvel | 0 | 429,434,536 | 100% | ||
angami | 0 | 441,040,866 | 100% | ||
furie | 0 | -24,909,161,437 | -100% | ||
tankie | 0 | 1,160,633,024 | 100% | ||
mmansooramin | 0 | 1,015,553,864 | 100% | ||
moonqueen | 0 | 1,096,798,172 | 100% | ||
mertvavnutri | 0 | 1,050,372,657 | 100% | ||
neskor | 0 | 858,867,637 | 100% | ||
stiuly | 0 | 1,096,797,088 | 100% | ||
stendekq | 0 | 400,417,967 | 100% | ||
andrew220 | 0 | 1,143,222,273 | 100% | ||
cupidiffy | 0 | 1,114,206,367 | 100% | ||
dittz | 0 | 81,244,196 | 100% | ||
kshitiztimsina | 0 | 406,220,935 | 100% | ||
isveliss | 0 | 0 | 100% | ||
zads | 0 | 626,740,096 | 100% | ||
mido.out | 0 | 1,160,629,391 | 100% | ||
alex-steem-it | 0 | 0 | 100% |
Python is the best language. More easy for all programmer especially for new programers
author | abdelhadi | ||||||
---|---|---|---|---|---|---|---|
permlink | re-oflyhigh-2017820t165739778z | ||||||
category | cn | ||||||
json_metadata | {"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-20 15:57:39 | ||||||
last_update | 2017-08-20 15:57:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-27 15:57:39 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.345 HBD | ||||||
curator_payout_value | 0.015 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 87 | ||||||
author_reputation | 11,701,809,477 | ||||||
root_title | "Python3 线程 & GIL 学习笔记" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,358,304 | ||||||
net_rshares | 100,840,930,700 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
good-karma | 0 | 100,840,930,700 | 0.5% |
Hi @oflyhigh! I'm very curious about python. I use visual basic.net for some of my programs but I really don't know what can I do with python programming language. Can I use it in web development as well?
author | akilie1029 |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t113139003z |
category | cn |
json_metadata | {"tags":["cn"],"users":["oflyhigh"],"app":"steemit/0.1"} |
created | 2017-08-20 11:31:42 |
last_update | 2017-08-20 11:31:42 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 11:31:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 204 |
author_reputation | 5,297,103,276,823 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,339,941 |
net_rshares | 228,328,956 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
syahrul | 0 | 228,328,956 | 100% |
I am an expert in Python Believe me you will not find strength It has a great benefit in many areas Any question you send me and be happy with your friendship 我是Python的专家 相信我,你找不到实力 它在许多领域都有很大的好处 任何问题,你寄给我,并与你的友谊快乐
author | angami |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t225831860z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 22:58:36 |
last_update | 2017-08-20 23:01:03 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 22:58:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 214 |
author_reputation | -3,685,984,627 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,386,611 |
net_rshares | 1,026,879,297 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
p2pgarden | 0 | 591,641,600 | 100% | ||
angami | 0 | 435,237,697 | 100% |
Congratulations @oflyhigh! Your post was mentioned in the [hit parade](https://steemit.com/hit-parade/@arcange/daily-hit-parade-20170820) in the following category: * Pending payout - Ranked 6 with $ 272,15
author | arcange |
---|---|
permlink | re-python3-and-gil-20170820t163945000z |
category | cn |
json_metadata | "" |
created | 2017-08-21 14:38:30 |
last_update | 2017-08-21 14:38:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 14:38:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 208 |
author_reputation | 1,146,633,668,945,473 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,443,071 |
net_rshares | 0 |
Hi, I think your post is very important, but I am unlucky man because I dont understand at all. Could you tell me the core of what you have written on your post? Thanks a lot my feiend. Regard from Aceh.
author | bahagia-arbi | ||||||
---|---|---|---|---|---|---|---|
permlink | re-oflyhigh-2017821t25011471z | ||||||
category | cn | ||||||
json_metadata | {"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-20 19:50:18 | ||||||
last_update | 2017-08-20 19:50:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-27 19:50:18 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 203 | ||||||
author_reputation | 62,544,888,098,801 | ||||||
root_title | "Python3 线程 & GIL 学习笔记" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,375,556 | ||||||
net_rshares | 0 |
good post.... I like, I like!
author | bukhairidin |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170821t060102539z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-21 04:59:57 |
last_update | 2017-08-21 04:59:57 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 04:59:57 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 29 |
author_reputation | 2,167,681,459,353 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,405,450 |
net_rshares | 0 |
-Excellent post thanks for sharing I am a new steemians, maybe i should study first with you, regards know me https://steemit.com/@cartoonhd please follow me I followed and upvoted.Would you like to follow and upvote me. 
author | cartoonhd |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170821t135445247z |
category | cn |
json_metadata | {"tags":["cn"],"image":["https://steemitimages.com/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx/DQmRKgYYp1TzWmvqtnfbMSLZQSgUXinUxqyHyd39HZ8j7gx.gif","https://steemitimages.com/DQmZr4CcZryi9kn8kLQD11tbo9MXJUYfiBvDPu8DrJtanWS/DQmeEhY3iMJiyRhGjAM6aaUDfSuam7F722fD6iwqyWxVBMB_1680x8400.png"],"links":["https://steemit.com/@cartoonhd"],"app":"steemit/0.1"} |
created | 2017-08-21 13:54:45 |
last_update | 2017-08-21 13:54:45 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 13:54:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 606 |
author_reputation | 27,356,199,641 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,439,122 |
net_rshares | 0 |
Where can I find more about python? Thank you.
author | cryptousage |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t115238300z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 11:52:36 |
last_update | 2017-08-20 11:52:36 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 11:52:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 46 |
author_reputation | 38,479,085,902 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,341,059 |
net_rshares | 0 |
Next topic: **PlayboyMansion 行程 & GIRL 学习笔记**
author | deanliu |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t122711843z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 12:27:12 |
last_update | 2017-08-20 12:27:12 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 12:27:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 45 |
author_reputation | 3,097,302,893,986,266 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,343,293 |
net_rshares | 0 |
I would like to learn python ...give me advice.
author | drphysiatre | ||||||
---|---|---|---|---|---|---|---|
permlink | re-oflyhigh-2017820t12857342z | ||||||
category | cn | ||||||
json_metadata | {"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-20 11:09:12 | ||||||
last_update | 2017-08-20 11:10:18 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-27 11:09:12 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 47 | ||||||
author_reputation | 314,789,428,943 | ||||||
root_title | "Python3 线程 & GIL 学习笔记" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,338,616 | ||||||
net_rshares | 0 |
没想到,这上面讨论python,这么受欢迎。
author | gothame |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170823t122202126z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-23 12:22:03 |
last_update | 2017-08-23 12:22:03 |
depth | 1 |
children | 0 |
last_payout | 2017-08-30 12:22:03 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 22 |
author_reputation | 13,772,208,962 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,631,643 |
net_rshares | 0 |
COOLEST POST.NICE TO WATCH THIS MAKE MY DAY THANK YOU DEAR
author | hossainsohag |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170822t200433714z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-22 20:04:42 |
last_update | 2017-08-22 20:04:42 |
depth | 1 |
children | 0 |
last_payout | 2017-08-29 20:04:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 912,466,875,814 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,568,475 |
net_rshares | 0 |
次次次
author | johnsmit |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t120657893z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 12:04:30 |
last_update | 2017-08-20 12:04:30 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 12:04:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3 |
author_reputation | -414,127,363,400 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,341,730 |
net_rshares | 0 |
py安装了2个星期了。 **启动次数:2** 安装时启动1次,阅读完该文启动1次
author | jubi |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t110651816z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 11:07:42 |
last_update | 2017-08-20 11:07:42 |
depth | 1 |
children | 1 |
last_payout | 2017-08-27 11:07:42 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | 82,406,494,254,467 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,338,515 |
net_rshares | 222,987,928 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
syahrul | 0 | 222,987,928 | 100% |
适合自己的就是最好的 有必要十八般武器样样精通吗?😀 你擅长PHP,就充分发挥PHP的优势好了 我是没啥擅长的,看Python易上手,就拿来学学
author | oflyhigh |
---|---|
permlink | re-jubi-re-oflyhigh-python3-and-gil-20170820t111247128z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 11:12:48 |
last_update | 2017-08-20 11:12:48 |
depth | 2 |
children | 0 |
last_payout | 2017-08-27 11:12:48 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 73 |
author_reputation | 6,344,336,061,337,513 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,338,844 |
net_rshares | 218,982,157 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
syahrul | 0 | 218,982,157 | 100% |
upvoted resteemed and followed
author | kitcat |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t115321428z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 11:53:21 |
last_update | 2017-08-20 11:53:21 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 11:53:21 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 30 |
author_reputation | 33,063,379,747,116 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,341,100 |
net_rshares | 0 |
Python is in top 3. programming languages in world. Love programming with Python. :)
author | kresho1 |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t200523101z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 20:05:24 |
last_update | 2017-08-20 20:05:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 20:05:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 84 |
author_reputation | 0 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,376,484 |
net_rshares | 0 |
Thats a great Articles...but if anybody has answer to the following question it will be great help.. https://steemit.com/facebook/@lifeisfun/question-making-money-with-no-of-likes-on-facebook-for-steemit-posts
author | lifeisfun |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t155317361z |
category | cn |
json_metadata | {"tags":["cn"],"links":["https://steemit.com/facebook/@lifeisfun/question-making-money-with-no-of-likes-on-facebook-for-steemit-posts"],"app":"steemit/0.1"} |
created | 2017-08-20 15:52:24 |
last_update | 2017-08-20 15:52:24 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 15:52:24 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 210 |
author_reputation | 1,962,145,227 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,357,920 |
net_rshares | 0 |
以前曾有一堂課有上過一些些程式語言, 結果那堂課果不其然的得重學.... XDD 曾經聽說過以前朋友在學B、C語言的,聽說那些程式語言都是他們的噩夢啊...
author | lydiachan |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170821t095403677z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-21 09:54:54 |
last_update | 2017-08-21 09:54:54 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 09:54:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 78 |
author_reputation | 38,600,108,764,289 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,422,160 |
net_rshares | 0 |
like
author | mamamyanmar | ||||||
---|---|---|---|---|---|---|---|
permlink | re-oflyhigh-2017820t19272881z | ||||||
category | cn | ||||||
json_metadata | {"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-20 12:57:06 | ||||||
last_update | 2017-08-20 12:57:06 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-27 12:57:06 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 4 | ||||||
author_reputation | 14,121,891,848,891 | ||||||
root_title | "Python3 线程 & GIL 学习笔记" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,345,320 | ||||||
net_rshares | 0 |
I do not understand your language, But I know what python is
author | muhajirnyakcut |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t184332714z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 18:43:39 |
last_update | 2017-08-20 18:43:39 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 18:43:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.573 HBD |
curator_payout_value | 0.191 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 60 |
author_reputation | 193,360,099,051 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,371,198 |
net_rshares | 200,724,730,551 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
gentlebot | 0 | 200,724,730,551 | 100% |
Python的线程好像是有点蛋疼, 如果是CPU密集型的任务, 应该直接进程就好了, 大部分时候是跑满CPU核数, 如果是IO密集型的, 目前大部分都用Event Loop模型了
author | powerfj |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t130808528z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 13:08:09 |
last_update | 2017-08-20 13:08:09 |
depth | 1 |
children | 2 |
last_payout | 2017-08-27 13:08:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 2.425 HBD |
curator_payout_value | 0.211 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 89 |
author_reputation | 1,712,765,353,203 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,346,039 |
net_rshares | 702,372,376,313 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
oflyhigh | 0 | 691,694,426,087 | 30% | ||
powerfj | 0 | 6,143,441,045 | 100% | ||
ehabakhdar | 0 | 4,470,669,268 | 100% | ||
serkagan | 0 | 63,839,913 | 100% |
follow for free coupons https://steemit.com/@mmansooramin
author | mmansooramin |
---|---|
permlink | re-powerfj-re-oflyhigh-python3-and-gil-20170821t081754607z |
category | cn |
json_metadata | {"tags":["cn"],"links":["https://steemit.com/@mmansooramin"],"app":"steemit/0.1"} |
created | 2017-08-21 08:17:54 |
last_update | 2017-08-21 08:17:54 |
depth | 2 |
children | 0 |
last_payout | 2017-08-28 08:17:54 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 58 |
author_reputation | 543,916,612 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,416,608 |
net_rshares | 0 |
感谢分享 慢慢摸索中
author | oflyhigh |
---|---|
permlink | re-powerfj-re-oflyhigh-python3-and-gil-20170820t131844438z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 13:18:45 |
last_update | 2017-08-20 13:18:45 |
depth | 2 |
children | 0 |
last_payout | 2017-08-27 13:18:45 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 10 |
author_reputation | 6,344,336,061,337,513 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,346,702 |
net_rshares | 0 |
very nice post even i don,t know Chines
author | sharoon |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t141635979z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 14:16:36 |
last_update | 2017-08-20 14:16:36 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 14:16:36 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 40 |
author_reputation | -330,640,444,933 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,350,978 |
net_rshares | 0 |
Python is awesome.
author | siddm96 |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t174616581z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 17:46:15 |
last_update | 2017-08-20 17:46:15 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 17:46:15 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 18 |
author_reputation | 561,667,554,662 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,366,931 |
net_rshares | 0 |
좋은 게시물. 우리가 인도 할 수 있을까요? 고마워.
author | steemboad | ||||||
---|---|---|---|---|---|---|---|
permlink | re-oflyhigh-2017820t194229398z | ||||||
category | cn | ||||||
json_metadata | {"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-20 12:42:36 | ||||||
last_update | 2017-08-20 12:59:39 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-27 12:42:36 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.000 HBD | ||||||
curator_payout_value | 0.000 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 29 | ||||||
author_reputation | -123,231,333,505 | ||||||
root_title | "Python3 线程 & GIL 学习笔记" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,344,298 | ||||||
net_rshares | 0 |
I Never Really Liked Python But One Thing I Like About It Is Not Having Any ";" Lol If You Know What I Mean :)
author | steemian69 |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170821t071934792z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-21 08:20:12 |
last_update | 2017-08-21 08:20:12 |
depth | 1 |
children | 0 |
last_payout | 2017-08-28 08:20:12 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 110 |
author_reputation | 1,160,052,362,678 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,416,733 |
net_rshares | 0 |
Python is the best programming language
author | stefanarnaut |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t143901282z |
category | cn |
json_metadata | {"tags":["cn"],"app":"steemit/0.1"} |
created | 2017-08-20 14:39:00 |
last_update | 2017-08-20 14:39:00 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 14:39:00 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 39 |
author_reputation | 379,128,940,096 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,352,628 |
net_rshares | 0 |
@oflyhigh Good article, very weighty to be reviewed. Information is very important for the lovers pemograman.
author | syahrul |
---|---|
permlink | re-oflyhigh-python3-and-gil-20170820t115155833z |
category | cn |
json_metadata | {"tags":["cn"],"users":["oflyhigh"],"app":"steemit/0.1"} |
created | 2017-08-20 11:52:33 |
last_update | 2017-08-20 11:52:33 |
depth | 1 |
children | 0 |
last_payout | 2017-08-27 11:52:33 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.000 HBD |
curator_payout_value | 0.000 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 109 |
author_reputation | 11,742,167,665 |
root_title | "Python3 线程 & GIL 学习笔记" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 12,341,052 |
net_rshares | 237,675,755 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
syahrul | 0 | 237,675,755 | 100% |
Great posts can be useful can be an experience. Hopefully be a friend who can help me to like you ..... to dream and hope to be achieved. Like @yooraa need friend support. Best regards.
author | yooraa | ||||||
---|---|---|---|---|---|---|---|
permlink | re-oflyhigh-2017821t03610905z | ||||||
category | cn | ||||||
json_metadata | {"tags":"cn","app":"esteem/1.4.6","format":"markdown+html","community":"esteem"} | ||||||
created | 2017-08-20 17:36:15 | ||||||
last_update | 2017-08-20 17:36:15 | ||||||
depth | 1 | ||||||
children | 0 | ||||||
last_payout | 2017-08-27 17:36:15 | ||||||
cashout_time | 1969-12-31 23:59:59 | ||||||
total_payout_value | 0.735 HBD | ||||||
curator_payout_value | 0.256 HBD | ||||||
pending_payout_value | 0.000 HBD | ||||||
promoted | 0.000 HBD | ||||||
body_length | 185 | ||||||
author_reputation | 560,660,454,067 | ||||||
root_title | "Python3 线程 & GIL 学习笔记" | ||||||
beneficiaries |
| ||||||
max_accepted_payout | 1,000,000.000 HBD | ||||||
percent_hbd | 10,000 | ||||||
post_id | 12,366,192 | ||||||
net_rshares | 273,432,379,207 | ||||||
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
yooraa | 0 | 641,603,596 | 100% | ||
thing-2 | 0 | 272,790,775,611 | 100% |