看到一个博主讲了一件很有意思的事情,大意是两个方块物体在水平方向上弹性碰撞后,其中一块再撞到墙壁反弹,最终会发现,在一定条件下发生弹性碰撞的次数会和PI这个常量极度相关。  (图源 :[pixabay](https://pixabay.com/)) # 撞击次数与圆周率 为了说明这个问题,我大致画了个图(原谅我的绘图技能): > 在上图中,有红色方块A(1)和绿色方块B(2),A以速度v1前进,B静止不动(速度v2=0),A撞击到B,B被撞后获取一定的速度vb,方块B撞击墙体(黄实线)后返回,又撞击A。 如果A、B质量相等,那么撞击会发生3次,如果A的质量大于B,撞击会发生很多次。 而这个博主总结的规律为: >如果A、B质量相等,撞击3次 >如果A的质量是B的100倍,那么撞击31次 >如果A的质量是B的10000倍,那么撞击314次 >如果A的质量是B的1000000倍,那么撞击3141次 >如果A的质量是B的100000000倍,那么撞击31415次 观察撞击次数就会发现,撞击的次数竟然符合圆周率(PI)的规律。 # 弹性碰撞 其实如果是真实地实验,很难重现上述规律,为何?因为方块和平面之间存在摩擦,方块在空气中也会有空气阻力,方块和方块撞击时可能会发生一定程度的形变等等。 所以只有在理想情况下,才可能重现上述规律。那么什么是理想情况呢?就是不存在摩擦、不存在空气阻力、方块撞击时无形变等等。 百度百科里关于[弹性碰撞](https://baike.baidu.com/item/弹性碰撞/2321173)定义的更科学一些,直接搬来: >在理想情况下,物体碰撞后,形变能够恢复,不发热、发声,没有动能损失,这种碰撞称为弹性碰撞(elastic collision),又称完全弹性碰撞(Perfect Elastic Collision)。 弹性碰撞符合两大物理定律:***动量守恒定律*** 以及***能量守恒定律*** 而根据我们描述的情况,不难推导出,弹性碰撞后物体的速度: > 因为我们目的不是推导公式,所以直接拿来用就好了。因为我们例子中碰撞是发生在直线上的核心碰撞,所以公式中的v,就是物体的初速度啦。 # Python代码 说了这么多,我是要证明弹性碰撞和圆周率的关系吗?非也!我只是好奇碰撞真的符合这个规律吗? 之前说了,理想情况下,实验才能重现出响应的规律,但是实际上没法弄出理想的实验条件呀?不过没关系,可以用程序模拟啊! 为了计算碰撞次数,我们首先需要计算碰撞前后的速度(其实就是简单地套用公式): ``` def collision(m1, v1, m2, v2): va = (v1*(m1 - m2) + 2*m2*v2)/(m1 + m2) vb = (v2*(m2 - m1) + 2*m1*v1)/(m2 + m1) return va, vb ``` 接下来是计算碰撞次数,这可难住了我,如何计算碰撞次数呢?其实就是找出***符合什么条件会退出碰撞***? 从方块图中,我们不难分析出,只有当方块A向左侧行走,且方块B追不上它时,碰撞才会结束,假设向右运动为正,那么亦即符合如下条件: >***`v1 < 0 and v2<=0 and abs(v1) >= abs(v2)`*** 还有就是方块和墙壁撞击,墙壁的质量,那么代入速度公式中,不难算出: >***`v2 = -1*v2`*** 根据上述分析我写出如下代码来计算次数: ``` def func_times(m1, v1, m2, v2): times = 0 while(True): if(v1 < 0 and v2<=0 and abs(v1) >= abs(v2)): break v1, v2 = collision(m1, v1, m2, v2) times = times +1 if(v1 < 0 and v2<=0 and abs(v1) >= abs(v2)): break v2 = -1*v2 times = times +1 return times ``` # 见证奇迹 好了,现在是见证奇迹的时刻的时刻啦。 ``` m1 = 100 m2 = 100 v1 = 100 v2 = 0 for i in range(0, 7): m1 = 100*100**i times = func_times(m1, v1, m2, v2) print(f"M1:{m1}, M2:{m2}, v1:{v1}, v2:{v2}, Times:{times}") ``` 给木块设定质量和初速度,然后模拟碰撞,看看是不是符合这个博主说的规律? 运行上述程序,输出如下: > 哇哇哇,果然是圆周率啊,是不是很神奇?  (图源 :[pixabay](https://pixabay.com/)) 至于为何是圆周率,就留给聪明的你去证明啦! # 相关链接 * [弹性碰撞](https://baike.baidu.com/item/弹性碰撞/2321173) ---- <center><strong>Vote For Me As Witness</strong> https://steemit.com/~witnesses type in **`oflyhigh`** and click ***`VOTE`*** [](https://steemit.com/~witnesses) [Vote @oflyhigh via Steemconnect](https://steemconnect.com/sign/account-witness-vote?witness=oflyhigh&approve=1) <strong>Thank you!</strong></center>
author | oflyhigh |
---|---|
permlink | 4qhpev-python |
category | cn |
json_metadata | {"tags":["cn","stem","cn-stem","collision","pi"],"image":["https://cdn.steemitimages.com/DQmQgbGt8yjCTtZ3fieB8zZ2mkzaDo24V1XdFL8XcUnS8Be/image.png","https://cdn.steemitimages.com/DQmb6je2M8UVJbaHKVhHYXBNaZgaUMahAKre6wPqjrTL32q/image.png","https://cdn.steemitimages.com/DQmV6b8z2sjYd59uZ5frzbYrxEdq1M99N8aRm7ED3xre73E/image.png","https://cdn.steemitimages.com/DQmP3pK4KKwqi4SdCMBsnQvVeeQcyBR6t9A2LgTdscVRnU3/image.png","https://cdn.steemitimages.com/DQmVhbrSPeaSgRdAUZB6B9FvxA2Rvpfnc6Ky26NAhy3avFu/image.png","https://cdn.steemitimages.com/DQmX5NysqT44FBa3bhuWqQ69nAbseu8Nt5YQPn2pYejPVxA/image.png"],"links":["https://pixabay.com/","https://baike.baidu.com/item/弹性碰撞/2321173","https://steemit.com/~witnesses","https://steemconnect.com/sign/account-witness-vote?witness=oflyhigh&approve=1"],"app":"steemit/0.1","format":"markdown"} |
created | 2019-10-16 01:19:30 |
last_update | 2019-10-16 01:19:30 |
depth | 0 |
children | 3 |
last_payout | 2019-10-23 01:19:30 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 9.152 HBD |
curator_payout_value | 8.512 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,211 |
author_reputation | 6,276,672,115,522,469 |
root_title | 有多无聊:弹性碰撞与Python代码 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,595,628 |
net_rshares | 56,558,775,495,950 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
wackou | 0 | 42,779,602,136 | 0.64% | ||
lafona-miner | 0 | 391,670,115,185 | 10% | ||
tombstone | 0 | 110,055,378,311 | 0.38% | ||
abit | 0 | 601,875,086,120 | 100% | ||
delegate.lafona | 0 | 213,298,763,158 | 10% | ||
adm | 0 | 18,564,179,889,464 | 100% | ||
chris4210 | 0 | 6,792,299,168 | 1.08% | ||
scalextrix | 0 | 22,664,844,062 | 50% | ||
justtryme90 | 0 | 279,424,407,410 | 10% | ||
eric-boucher | 0 | 4,240,302,453 | 1.08% | ||
thecryptodrive | 0 | 361,159,783,332 | 25% | ||
wongshiying | 0 | 22,321,941,701 | 100% | ||
anwenbaumeister | 0 | 69,973,273 | 2.16% | ||
mammasitta | 0 | 566,931,364 | 0.1% | ||
gerber | 0 | 149,785,452,813 | 10% | ||
daan | 0 | 225,710,192,791 | 6% | ||
matt-a | 0 | 194,357,265,969 | 4% | ||
redpalestino | 0 | 338,190,589,975 | 5% | ||
cabi5boh | 0 | 441,280,241 | 50% | ||
blockchainbilly | 0 | 5,810,934,680 | 50% | ||
blueorgy | 0 | 5,131,158,457 | 1.62% | ||
deanliu | 0 | 1,838,825,587,965 | 100% | ||
rea | 0 | 1,849,151,572,681 | 40% | ||
joythewanderer | 0 | 474,714,386,447 | 45% | ||
webdeals | 0 | 198,283,758,221 | 9% | ||
ace108 | 0 | 553,892,860,503 | 25% | ||
laoyao | 0 | 43,469,454,304 | 100% | ||
somebody | 0 | 13,072,365,108 | 100% | ||
midnightoil | 0 | 153,237,441,924 | 100% | ||
xiaohui | 0 | 864,461,695,734 | 100% | ||
silentlucidity53 | 0 | 0 | 75% | ||
oflyhigh | 0 | 3,219,659,645,883 | 100% | ||
xiaokongcom | 0 | 214,276,026 | 100% | ||
yulan | 0 | 16,348,214,017 | 100% | ||
rivalhw | 0 | 1,482,482,864,036 | 100% | ||
chinadaily | 0 | 119,062,630,962 | 100% | ||
helene | 0 | 1,133,843,318,560 | 100% | ||
lemouth | 0 | 74,716,112,801 | 10% | ||
ffcrossculture | 0 | 403,804,473,461 | 100% | ||
ethansteem | 0 | 387,658,426,490 | 100% | ||
charlie777pt | 0 | 4,825,104,692 | 5% | ||
rwilday | 0 | 109,824,744 | 100% | ||
alaqrab | 0 | 1,208,878,527 | 1.08% | ||
lamouthe | 0 | 785,091,087 | 10% | ||
holoz0r | 0 | 775,605,720 | 0.21% | ||
discernente | 0 | 31,125,875,959 | 5% | ||
lk666 | 0 | 685,459,193 | 1.08% | ||
curie | 0 | 679,942,468,732 | 2.16% | ||
techslut | 0 | 14,190,068,882 | 3% | ||
hendrikdegrote | 0 | 28,686,054,538 | 2.16% | ||
vact | 0 | 41,566,762,370 | 2.16% | ||
lalala | 0 | 160,618,076,387 | 100% | ||
steemsportsfund | 0 | 84,794,242,255 | 100% | ||
steemstem | 0 | 450,747,677,828 | 10% | ||
dapeng | 0 | 39,721,051,409 | 100% | ||
devilwsy | 0 | 2,590,078,022 | 100% | ||
janiceting | 0 | 2,530,710,093 | 100% | ||
walterjay | 0 | 42,377,411,351 | 70% | ||
newhope | 0 | 2,762,897,730,714 | 31% | ||
em3di | 0 | 1,006,846,079 | 5.6% | ||
blackbunny | 0 | 49,804,182,431 | 100% | ||
dna-replication | 0 | 2,795,442,171 | 10% | ||
elizacheng | 0 | 9,610,934,185 | 9% | ||
lingfei | 0 | 80,171,622,503 | 100% | ||
yyyy | 0 | 447,890,272 | 100% | ||
alexis555 | 0 | 2,539,277,027,114 | 33% | ||
akkha | 0 | 14,279,865,879 | 100% | ||
austinsandersco | 0 | 725,584,486 | 70% | ||
teachblogger | 0 | 2,097,468,691 | 50% | ||
kingofdew | 0 | 45,609,501,825 | 100% | ||
htliao | 0 | 33,250,778,601 | 20% | ||
bloom | 0 | 43,666,486,590 | 10% | ||
vannfrik | 0 | 1,680,470,627 | 5% | ||
iansart | 0 | 1,430,381,415 | 1.29% | ||
frankintaiwan | 0 | 11,863,186 | 10% | ||
wylo | 0 | 628,633,033 | 100% | ||
bitrocker2020 | 0 | 878,331,304 | 0.1% | ||
jkkim | 0 | 26,995,787 | 10% | ||
ebejammin | 0 | 5,994,730,575 | 100% | ||
jiujitsu | 0 | 1,193,282,610 | 1.08% | ||
helo | 0 | 1,721,623,405 | 5% | ||
cryptohustler | 0 | 29,624,989,250 | 100% | ||
samminator | 0 | 5,694,431,054 | 5% | ||
steemitlotteries | 0 | 182,327,702 | 78% | ||
wishmaiden | 0 | 412,649,885 | 5% | ||
exec | 0 | 114,678,980,051 | 100% | ||
eval | 0 | 767,257,545 | 100% | ||
speeding | 0 | 3,667,502,635 | 100% | ||
locikll | 0 | 1,717,066,823 | 4.32% | ||
kjaeger | 0 | 75,682,461 | 50% | ||
mahdiyari | 0 | 10,581,619,849 | 5% | ||
lorenzor | 0 | 5,943,969,795 | 50% | ||
blacklux | 0 | 16,833,698,077 | 25% | ||
alexander.alexis | 0 | 5,803,647,912 | 10% | ||
walkinharmony | 0 | 30,163,015,550 | 40% | ||
ricko66 | 0 | 40,881,058,607 | 100% | ||
suesa | 0 | 85,999,512,374 | 25% | ||
rival | 0 | 2,644,741,847 | 2% | ||
tensor | 0 | 1,001,566,667 | 1.08% | ||
asterix87 | 0 | 14,081,518,495 | 100% | ||
canbethisone | 0 | 139,863,022 | 50% | ||
abetterworld | 0 | 2,912,717,932 | 100% | ||
raili | 0 | 315,619,027 | 50% | ||
otom | 0 | 14,159,806,946 | 20% | ||
flatman | 0 | 734,477,348 | 2.16% | ||
fancybrothers | 0 | 4,385,024,529 | 3% | ||
goldkey | 0 | 19,905,468,893 | 10% | ||
minnowbooster | 0 | 3,942,928,240,433 | 25% | ||
felt.buzz | 0 | 550,297,409 | 0.54% | ||
that1consultant | 0 | 252,556,455 | 100% | ||
sanzo | 0 | 570,521,204 | 100% | ||
howo | 0 | 105,000,840,271 | 5% | ||
tsoldovieri | 0 | 700,796,201 | 5% | ||
davaowhenyo | 0 | 555,161,267 | 100% | ||
allenshayzar | 0 | 555,678,180 | 100% | ||
travelgirl | 0 | 238,844,328,524 | 35% | ||
raku | 0 | 691,730,618 | 100% | ||
resteeming | 0 | 544,754,946 | 100% | ||
ravenousappetite | 0 | 615,273,749 | 100% | ||
abigail-dantes | 0 | 201,502,423,115 | 10% | ||
aabb | 0 | 3,123,860,535 | 100% | ||
catwomanteresa | 0 | 116,067,938,163 | 50% | ||
timemaster | 0 | 0 | 26% | ||
buildteam | 0 | 98,885,556,487 | 100% | ||
auntigormint | 0 | 487,652,273 | 100% | ||
mrliga | 0 | 20,761,415,481 | 100% | ||
zonguin | 0 | 679,702,340 | 2.5% | ||
mountain.phil28 | 0 | 3,598,991,688 | 25% | ||
jasonbu | 0 | 17,291,606,589 | 25% | ||
oldman28 | 0 | 28,951,905,382 | 45% | ||
jeanlucsr | 0 | 16,957,746,430 | 100% | ||
coolbuddy | 0 | 0 | 1% | ||
sweethoney | 0 | 1,539,026,188 | 100% | ||
liangfengyouren | 0 | 2,310,847,022 | 50% | ||
idx | 0 | 11,305,954,713 | 100% | ||
tuoficinavirtual | 0 | 98,036,498 | 25% | ||
jiangchen | 0 | 23,806,449,211 | 100% | ||
iamphysical | 0 | 10,593,971,661 | 90% | ||
lancy | 0 | 4,683,831,565 | 92% | ||
felixrodriguez | 0 | 2,725,427,349 | 35% | ||
lpessin | 0 | 2,780,939,419 | 11.2% | ||
tookta | 0 | 90,739,048,601 | 70% | ||
cn-reader | 0 | 8,887,179,219 | 50% | ||
tvb | 0 | 21,078,473,218 | 30% | ||
skenan | 0 | 11,203,036,315 | 50% | ||
revo | 0 | 4,115,846,289 | 2.16% | ||
azulear | 0 | 1,692,029,400 | 100% | ||
djlethalskillz | 0 | 12,038,011,219 | 10% | ||
felicenavidad | 0 | 1,782,000,725 | 50% | ||
bearpaw | 0 | 422,872,650 | 100% | ||
rocky1 | 0 | 4,246,707,506,574 | 7% | ||
kimzwarch | 0 | 24,959,278,387 | 12.5% | ||
freedom-fighter | 0 | 554,871,599 | 100% | ||
massivevibration | 0 | 3,860,419,075 | 5% | ||
bitzfund | 0 | 10,466,624 | 10% | ||
kamikaze | 0 | 88,777,940,495 | 100% | ||
technologynepal | 0 | 554,660,211 | 100% | ||
joshman | 0 | 1,385,368,750 | 0.08% | ||
chenlocus | 0 | 0 | 40% | ||
davidke20 | 0 | 6,325,714,161 | 4% | ||
dgorbunov | 0 | 462,524,148 | 100% | ||
robertoueti | 0 | 1,755,613,252 | 3% | ||
roleerob | 0 | 1,567,635,997 | 0.64% | ||
minnowpowerup | 0 | 1,335,212,731 | 1.08% | ||
khalilad | 0 | 570,505,545 | 100% | ||
ms8988 | 0 | 545,277,923 | 100% | ||
dobartim | 0 | 234,635,851,549 | 4% | ||
xiaoshancun | 0 | 7,416,171,059 | 100% | ||
erikkun28 | 0 | 0 | 1% | ||
victory622 | 0 | 213,922,680,925 | 100% | ||
stakuza | 0 | 345,246,478 | 100% | ||
buttcoins | 0 | 1,815,728,491 | 0.43% | ||
sayee | 0 | 908,213,055 | 1.08% | ||
ikonik | 0 | 343,531,738 | 100% | ||
vfxness | 0 | 17,564,599 | 100% | ||
lemminon | 0 | 555,428,463 | 100% | ||
heyeshuang | 0 | 607,619,547 | 100% | ||
miti | 0 | 73,992,209,054 | 10% | ||
spacecadet1 | 0 | 259,938,611,726 | 100% | ||
razor80 | 0 | 547,764,907 | 100% | ||
backtomining | 0 | 1,926,534,882 | 2.5% | ||
carloserp-2000 | 0 | 26,040,807,285 | 100% | ||
fastiduos | 0 | 615,259,554 | 100% | ||
winniex | 0 | 7,438,074,380 | 20% | ||
rebecca80 | 0 | 148,716,191 | 100% | ||
weavingwords | 0 | 59,013,087,556 | 100% | ||
nitro.live | 0 | 272,896,182 | 100% | ||
gra | 0 | 837,762,811 | 10% | ||
postpromoter | 0 | 751,408,657,030 | 10% | ||
huatanzhang | 0 | 861,929,979 | 50% | ||
omstavan | 0 | 5,375,632,684 | 100% | ||
jincheng | 0 | 4,507,834,901 | 100% | ||
aalok | 0 | 138,498,694 | 26% | ||
windowglass | 0 | 110,301,783,397 | 30% | ||
halleyleow | 0 | 3,815,994,664 | 80% | ||
cnbuddy | 0 | 1,472,022,779 | 0.1% | ||
chann | 0 | 5,792,859,313 | 20% | ||
etherpunk | 0 | 32,297,283,837 | 22.5% | ||
drmake | 0 | 1,149,473,674 | 1.08% | ||
aboutcoolscience | 0 | 40,651,394,809 | 10% | ||
pechichemena | 0 | 662,654,612 | 0.43% | ||
amestyj | 0 | 4,751,397,271 | 100% | ||
bitinvdig0 | 0 | 1,012,222,734 | 24% | ||
itchyfeetdonica | 0 | 288,467,525,037 | 50% | ||
coindzs | 0 | 11,179,147,043 | 100% | ||
kenadis | 0 | 2,647,339,135 | 10% | ||
maticpecovnik | 0 | 1,230,407,067 | 4% | ||
steempsych | 0 | 2,598,046,048 | 10% | ||
robotics101 | 0 | 949,160,454 | 10% | ||
gentleshaid | 0 | 5,423,023,194 | 10% | ||
rajib2k5 | 0 | 1,098,810,488 | 0.5% | ||
nunesso | 0 | 165,219,106 | 50% | ||
ivymalifred | 0 | 1,206,567,291 | 50% | ||
sco | 0 | 9,763,644,326 | 10% | ||
ennyta | 0 | 904,623,573 | 50% | ||
bitcoinportugal | 0 | 323,154,329 | 50% | ||
ooairbb | 0 | 202,320,435 | 100% | ||
vjap55 | 0 | 919,455,663 | 100% | ||
eliaschess333 | 0 | 11,846,168,169 | 50% | ||
intrepidphotos | 0 | 88,380,965,327 | 5% | ||
mattiarinaldoni | 0 | 0 | 1% | ||
hijosdelhombre | 0 | 1,948,330,872 | 2.5% | ||
flysky | 0 | 31,165,683,892 | 1% | ||
maiyude | 0 | 1,637,518,381 | 50% | ||
suhunter | 0 | 852,578,302 | 50% | ||
suesa-random | 0 | 14,828,329,760 | 50% | ||
mermaidvampire | 0 | 16,517,840,875 | 7.5% | ||
terrylovejoy | 0 | 2,177,968,081 | 4% | ||
tmarisco | 0 | 572,091,868 | 11.2% | ||
neneandy | 0 | 2,415,720,820 | 2.16% | ||
ran.koree | 0 | 1,071,447,575 | 1.08% | ||
casberp | 0 | 62,233,598,587 | 11.2% | ||
joeliew | 0 | 3,552,194,631 | 100% | ||
traviseric | 0 | 248,888,644 | 50% | ||
john371911 | 0 | 128,569,480,100 | 50% | ||
stemng | 0 | 3,270,158,292 | 5% | ||
miguelangel2801 | 0 | 795,723,435 | 50% | ||
didic | 0 | 5,552,687,248 | 20% | ||
cadawg | 0 | 12,545,901,078 | 6% | ||
emiliomoron | 0 | 6,822,717,459 | 50% | ||
nostalgic1212 | 0 | 26,644,213,109 | 25% | ||
nenya | 0 | 690,856,912 | 60% | ||
intellihandling | 0 | 1,926,754,806 | 50% | ||
oghie | 0 | 763,548,059 | 50% | ||
geopolis | 0 | 611,968,813 | 10% | ||
historylover | 0 | 150,087,261 | 100% | ||
robertbira | 0 | 1,039,485,707 | 2.5% | ||
alexdory | 0 | 5,454,768,132 | 5% | ||
flugschwein | 0 | 1,828,636,915 | 7.5% | ||
cyprianj | 0 | 5,330,478,915 | 100% | ||
francostem | 0 | 1,320,946,551 | 10% | ||
endopediatria | 0 | 695,806,150 | 20% | ||
croctopus | 0 | 1,468,843,743 | 100% | ||
zipporah | 0 | 661,901,841 | 0.43% | ||
btccurrency1 | 0 | 74,835,272 | 100% | ||
emmanuel293 | 0 | 103,632,595 | 25% | ||
cryptofuwealth | 0 | 77,421,884 | 11% | ||
ethanlee | 0 | 3,760,294,244 | 100% | ||
satren | 0 | 23,921,867,050 | 10% | ||
lordjames | 0 | 1,561,803,745 | 1.08% | ||
delpilar | 0 | 934,959,443 | 25% | ||
fredo77200 | 0 | 3,647,223,914 | 100% | ||
tomastonyperez | 0 | 15,652,504,439 | 50% | ||
elvigia | 0 | 11,015,663,838 | 50% | ||
scoora82 | 0 | 0 | 24% | ||
peter-ella | 0 | 1,738,185,046 | 70% | ||
fanso | 0 | 1,649,080,334 | 100% | ||
juli1 | 0 | 239,248,222 | 74% | ||
qberry | 0 | 1,044,037,497 | 1.08% | ||
cryptoknight27 | 0 | 554,879,255 | 100% | ||
markko | 0 | 10,370,088 | 50% | ||
khayziljoy | 0 | 134,852,881 | 100% | ||
jansher | 0 | 1,593,443,632 | 10% | ||
de-stem | 0 | 3,947,147,928 | 9.9% | ||
elpdl | 0 | 548,861,890 | 100% | ||
serylt | 0 | 1,069,305,162 | 9.8% | ||
josedelacruz | 0 | 8,026,948,223 | 50% | ||
joseangelvs | 0 | 1,077,198,738 | 100% | ||
jaydih | 0 | 180,730,212,288 | 5% | ||
killerteesuk | 0 | 897,125,052 | 99% | ||
andrewma | 0 | 3,522,755,141 | 20% | ||
indigoocean | 0 | 1,861,110,801 | 1.08% | ||
kimseun | 0 | 32,848,723,256 | 5% | ||
musicvoter | 0 | 5,079,862,463 | 1% | ||
mynotsofitlife | 0 | 875,521,878 | 10% | ||
slobberchops | 0 | 38,542,218,692 | 2% | ||
crystalhuman | 0 | 676,474,852 | 10% | ||
pladozero | 0 | 34,886,766,877 | 10% | ||
nateaguila | 0 | 166,165,797,100 | 8% | ||
temitayo-pelumi | 0 | 723,327,672 | 10% | ||
hmayak | 0 | 9,017,870,901 | 100% | ||
andrick | 0 | 864,959,185 | 50% | ||
archisteem | 0 | 3,677,184,435 | 7.5% | ||
yusvelasquez | 0 | 1,639,529,134 | 50% | ||
motherofalegend | 0 | 596,742,042 | 5% | ||
alexworld | 0 | 361,143,667 | 25% | ||
xiguang | 0 | 328,979,096,161 | 100% | ||
musicvoter2 | 0 | 8,132,825,505 | 1% | ||
proffit | 0 | 951,467,561 | 1.08% | ||
frost1903 | 0 | 17,346,464 | 50% | ||
itastem | 0 | 4,121,751,588 | 10% | ||
acont | 0 | 1,594,763,254 | 50% | ||
schroders | 0 | 797,799,067 | 0.64% | ||
anaestrada12 | 0 | 7,937,517,395 | 100% | ||
sagesigma | 0 | 239,318,739 | 1% | ||
melissaofficial | 0 | 817,657,458 | 2.16% | ||
moneybaby | 0 | 2,023,349,889 | 5% | ||
kanadaramagi123 | 0 | 22,327,417,514 | 5% | ||
steemprotect | 0 | 3,249,784,902 | 3% | ||
longer | 0 | 527,011,332 | 50% | ||
blewitt | 0 | 2,462,627,114 | 0.15% | ||
abcallen | 0 | 9,575,970,075 | 80% | ||
kafupraise | 0 | 101,635,402 | 34% | ||
loveecho | 0 | 3,550,123,285 | 5% | ||
bambugrove | 0 | 548,279,846 | 100% | ||
partiko | 0 | 97,600,891,805 | 3.22% | ||
yomismosoy | 0 | 590,772,788 | 50% | ||
casiloko | 0 | 245,159,846 | 50% | ||
money-way | 0 | 595,997,191 | 100% | ||
bflanagin | 0 | 834,057,684 | 1.08% | ||
ubaldonet | 0 | 9,463,488,185 | 70% | ||
angelslake | 0 | 8,465,167,604 | 5% | ||
lillywilton | 0 | 742,645,308 | 20% | ||
yestermorrow | 0 | 8,609,272,826 | 31% | ||
goblinknackers | 0 | 27,346,743,167 | 3% | ||
alijewel | 0 | 576,957,509 | 100% | ||
wstanley226 | 0 | 66,829,027 | 50% | ||
gpcx86 | 0 | 307,152,100 | 2% | ||
amart29 | 0 | 2,162,350,002 | 10% | ||
jk6276 | 0 | 108,535,673 | 0.43% | ||
blues-wclouds | 0 | 792,305,954 | 100% | ||
p4ragon | 0 | 3,472,131,295 | 50% | ||
yaelg | 0 | 2,557,968,853 | 5% | ||
kylealex | 0 | 4,683,254,280 | 10% | ||
stooner | 0 | 250,640,204 | 50% | ||
rubenp | 0 | 589,793,379 | 100% | ||
julian2013 | 0 | 32,667,726,959 | 20% | ||
idakarlsen | 0 | 99,424,405,026 | 25% | ||
loveforlove | 0 | 665,644,980 | 10% | ||
lupafilotaxia | 0 | 14,243,327,412 | 35% | ||
fran.frey | 0 | 4,133,887,065 | 50% | ||
steemaction | 0 | 7,106,904,497 | 10% | ||
wordit | 0 | 8,221,722,511 | 5% | ||
sj-jeong | 0 | 265,004,980,994 | 5% | ||
moniroy | 0 | 122,095,356 | 50% | ||
wondumyungga | 0 | 18,195,195,274 | 5% | ||
skorup87 | 0 | 21,322,599 | 12% | ||
stem-espanol | 0 | 68,236,201,218 | 100% | ||
praditya | 0 | 2,394,240,098 | 24% | ||
aleestra | 0 | 3,723,676,744 | 80% | ||
emmyluluameh | 0 | 60,267,111 | 50% | ||
aquawink | 0 | 21,505,250,963 | 5% | ||
lkvictor2005 | 0 | 21,405,411,356 | 100% | ||
the.success.club | 0 | 837,016,129 | 1.08% | ||
javier.dejuan | 0 | 2,362,529,171 | 10% | ||
hadinasir | 0 | 2,327,570,681 | 50% | ||
jamzmie | 0 | 11,871,499,111 | 15% | ||
scienze | 0 | 5,183,624,242 | 10% | ||
scienza | 0 | 5,236,838,772 | 10% | ||
cryptorunway | 0 | 60,669,427 | 50% | ||
sasaadrian | 0 | 12,137,696,616 | 20% | ||
giulyfarci52 | 0 | 1,708,747,172 | 50% | ||
theodosiskatq | 0 | 60,129,266 | 50% | ||
ringit | 0 | 8,804,997,853 | 5% | ||
adalger | 0 | 638,487,952 | 0.32% | ||
sherdzio | 0 | 60,601,073 | 75% | ||
coreabeforekorea | 0 | 145,668,121,052 | 5% | ||
the-rhapsodist | 0 | 11,194,597,296 | 10% | ||
megadrive | 0 | 12,166,405,900 | 100% | ||
stem.witness | 0 | 9,629,120,777 | 10% | ||
quenty | 0 | 899,831,481 | 60% | ||
talkative-bk | 0 | 207,273,733,843 | 5% | ||
empressteemah | 0 | 728,705,169 | 10% | ||
edriseur | 0 | -55,885,462,676 | -10% | ||
alex-hm | 0 | 791,266,041 | 50% | ||
wilmer14molina | 0 | 1,124,214,885 | 50% | ||
ppss | 0 | 1,013,360,337 | 2.11% | ||
benhurg | 0 | 550,023,792 | 100% | ||
kingnosa | 0 | 152,422,912 | 50% | ||
primeradue | 0 | 9,750,260,337 | 10% | ||
nimloth | 0 | 652,963,302 | 60% | ||
travisung | 0 | 6,084,521,114 | 1.08% | ||
cameravisual | 0 | 40,138,101,296 | 50% | ||
crowdwitness | 0 | 5,750,875,752 | 5% | ||
amin-ove | 0 | 175,216,047 | 50% | ||
bunchtale | 0 | 44,029,345 | 25% | ||
itzhakizzy | 0 | 148,591,612 | 100% | ||
hairgistix | 0 | 1,007,301,157 | 1.08% | ||
goodcontentbot | 0 | 53,783,327 | 50% | ||
dinamo | 0 | 6,722,528,972 | 1.51% | ||
huilco | 0 | 432,394,632 | 100% | ||
hanyseek | 0 | 2,859,289 | 25% | ||
herculean | 0 | 54,383,856 | 50% | ||
chocolatelover | 0 | 2,893,230,298 | 35% | ||
archisteem-cn | 0 | 1,582,777,877 | 15% | ||
allthetimer | 0 | 70,932,825 | 98% | ||
alexgamer | 0 | 231,944,300 | 50% | ||
donasys | 0 | 43,624,264 | 50% | ||
mtfmohammad | 0 | 109,834,148 | 25% | ||
hungryharish | 0 | 8,871,923,724 | 100% | ||
chrisluke | 0 | 164,226,905 | 26% | ||
pflanzenlilly | 0 | 243,878,009 | 50% | ||
sapphire.app | 0 | 0 | 50% | ||
elektroyazilim | 0 | 39,136,347,655 | 60% | ||
kryptogames | 0 | 7,955,198,749 | 1.08% | ||
sumotori | 0 | 768,891,989 | 75% | ||
russia-btc | 0 | 2,829,254,277 | 1.08% | ||
naturalproducts | 0 | 93,880,090,972 | 25% | ||
alexmonster | 0 | 117,457,901 | 50% | ||
smdragon | 0 | 117,930,298 | 50% | ||
gutenmorganism | 0 | 927,967,971 | 50% | ||
faberleggenda | 0 | 461,032,710 | 100% | ||
hungryanu | 0 | 1,330,601,779 | 50% | ||
mohaaking | 0 | 177,822,659 | 50% | ||
gustavoagt | 0 | 306,063,403 | 97% | ||
brendanweinhold | 0 | 175,576,653 | 100% | ||
vaccinusveritas | 0 | 1,556,000,701 | 50% | ||
epicdice | 0 | 9,524,887,851 | 0.64% | ||
thetechspot | 0 | 146,706,960 | 26% | ||
doggy5 | 0 | 47,091,644 | 100% | ||
phctop3 | 0 | 1,573,397,519 | 1.08% | ||
whatdidshewear | 0 | 41,726,706,518 | 5% | ||
sjgod4018 | 0 | 34,115,042,404 | 5% | ||
mustard-seed | 0 | 16,668,661,204 | 5% | ||
sembdelgado | 0 | 167,139,946 | 50% | ||
ziox | 0 | 2,192,266,232 | 1.08% | ||
morwen | 0 | 6,713,593,217 | 60% | ||
yarak | 0 | 227,526,295 | 100% | ||
klima | 0 | 2,117,688,274 | 60% | ||
hertz300 | 0 | 422,345,194 | 10% | ||
steemindian | 0 | 27,246,622,554 | 100% | ||
mosquito76 | 0 | 23,152,716,414 | 10% | ||
crimcrim | 0 | 506,746,946 | 50% | ||
liambu | 0 | 693,666,161 | 12.5% | ||
poppie-schultz | 0 | 85,066,861 | 10% | ||
wenjiewu | 0 | 368,755,724 | 100% | ||
curation.stem | 0 | 785,956,144 | 75% | ||
mk-stem-token | 0 | 158,601,440 | 5.4% | ||
debtfreein2 | 0 | 3,320,228,177 | 100% | ||
arm27312 | 0 | 46,849,007 | 50% | ||
teresa.yaiyai | 0 | 7,878,277,645 | 100% | ||
stemd | 0 | 68,022,857 | 30% | ||
steemstem-trig | 0 | 725,274,296 | 10% | ||
bilpcoinrecords | 0 | 1,097,006,312 | 2% | ||
c0mrade | 0 | 220,918,193 | 50% | ||
jaykayw | 0 | 7,763,012,613 | 5% | ||
tengri | 0 | 58,566,697,096 | 7.92% | ||
thebilpcointrain | 0 | 57,310,298 | 1% | ||
bilpcoin.pay | 0 | 141,642,429 | 1% | ||
yggdrasil.laguna | 0 | 301,100,357 | 70% | ||
lusce | 0 | 1,150,899,122 | 10% |
!thumbup 恭喜你!您的这篇文章入选 @justyy 今日 (2019-10-17) 榜单 [【优秀的文章】](https://steemit.com/cn/@justyy/--daily-cn-updates-cncnpower-downyy2019-10-17), 回复本条评论24小时内领赏,点赞本评论将支持 @dailychina 并增加将来您的奖赏。 @justyy 是CN区的见证人,[请支持他,给他投票](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=justyy),或者设置justyy为[见证人代理](https://v2.steemconnect.com/sign/account-witness-proxy?proxy=justyy&approve=1)。感谢!@justyy的主要贡献:https://steemyy.com Congratulations! This post has been selected by @justyy as today's (2019-10-17) [【Good Posts】](https://steemit.com/cn/@justyy/--daily-cn-updates-cncnpower-downyy2019-10-17), Steem On! Reply to this message in 24 hours to get rewards. Upvote this comment to support the @dailychina and increase your future rewards! ^_^ [SteemIt 工具、API接口、机器人和教程](https://steemyy.com/steemit-tools/) [SteemIt Tools, Bots, APIs and Tutorial](https://SteemYY.com)<hr> If you believe what I am doing, please consider a spare vote voting me [here](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=justyy), thank you very much indeed. @justyy - the author of https://SteemYY.com and I have been a Steem Witness for [more than a year now.](https://steemit.com/witness-category/@justyy/one-year-winessversary-a-great-start)
author | dailychina |
---|---|
permlink | re-4qhpev-python-20191017t080127 |
category | cn |
json_metadata | "" |
created | 2019-10-17 08:01:27 |
last_update | 2019-10-17 08:01:27 |
depth | 1 |
children | 0 |
last_payout | 2019-10-24 08:01:27 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.022 HBD |
curator_payout_value | 0.021 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 1,249 |
author_reputation | 50,124,640,567,504 |
root_title | 有多无聊:弹性碰撞与Python代码 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,634,997 |
net_rshares | 252,737,199,372 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
justyy | 0 | 202,234,703,302 | 8% | ||
happyukgo | 0 | 487,357,752 | 25% | ||
superbing | 0 | 6,765,981,147 | 25% | ||
dailyfortune | 0 | 32,474,276 | 25% | ||
dailystats | 0 | 16,166,338,797 | 25% | ||
penghuren | 0 | 1,349,522,209 | 100% | ||
dailychina | 0 | 14,905,578,567 | 25% | ||
turtlegraphics | 0 | 3,046,209,366 | 25% | ||
witnesstools | 0 | 2,936,622,835 | 25% | ||
ilovecoding | 0 | 2,914,201,349 | 25% | ||
steemfuckeos | 0 | 1,898,209,772 | 25% | ||
cplusplus | 0 | 0 | 25% | ||
justsoso | 0 | 0 | 25% |
Thank you so much for participating in the Partiko Delegation Plan Round 1! We really appreciate your support! As part of the delegation benefits, we just gave you a 3.22% upvote! Together, let’s change the world!
author | partiko |
---|---|
permlink | re-4qhpev-python-20191016t023014 |
category | cn |
json_metadata | "{"app": "partiko"}" |
created | 2019-10-16 02:30:15 |
last_update | 2019-10-16 02:30:15 |
depth | 1 |
children | 0 |
last_payout | 2019-10-23 02:30: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 | 213 |
author_reputation | 39,207,160,334,751 |
root_title | 有多无聊:弹性碰撞与Python代码 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,596,684 |
net_rshares | 0 |
<div class='text-justify'> <div class='pull-left'> <center> <br /> <img width='200' src='https://res.cloudinary.com/drrz8xekm/image/upload/v1553698283/weenlqbrqvvczjy6dayw.jpg'> </center> <br/> </div> This post has been voted on by the **SteemSTEM curation team** and voting trail. It is elligible for support from @curie and @minnowbooster.<br /> If you appreciate the work we are doing, then consider supporting our witness [@stem.witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=stem.witness). Additional witness support to the [curie witness](https://steemconnect.com/sign/account_witness_vote?approve=1&witness=curie) would be appreciated as well.<br /> For additional information please join us on the [SteemSTEM discord]( https://discord.gg/BPARaqn) and to get to know the rest of the community!<br /> Please consider using the <a href='https://www.steemstem.io'>steemstem.io</a> app and/or including @steemstem in the list of beneficiaries of this post. This could yield a stronger support from SteemSTEM.
author | steemstem |
---|---|
permlink | re-oflyhigh-4qhpev-python-20191017t123405983z |
category | cn |
json_metadata | {"app":"steemstem-bot"} |
created | 2019-10-17 12:34:09 |
last_update | 2019-10-17 12:34:09 |
depth | 1 |
children | 0 |
last_payout | 2019-10-24 12:34:09 |
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 | 1,050 |
author_reputation | 262,017,435,115,313 |
root_title | 有多无聊:弹性碰撞与Python代码 |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 91,641,148 |
net_rshares | 0 |