[[DA series - Learn Python with Steem]](https://steemit.com/da-learnpythonwithsteem/@deanliu/da-series-learn-python-with-steem-00-coding) 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! https://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmbeN1PpqQC2JE5HbpXatb3apUfFhe68fPLctT95FiiRHq/cover.png 首堂課,我們做三件事:**安裝Python,安裝文字編輯器,以及.... 著名的Hello World!!** ## 安裝Python 安裝python不是一件太困難的事情,基本上就跟安裝其他應用程式大同小異。 1 . 到[Python官網下載頁](https://www.python.org/downloads/) 點選頁面上最大的**Download Python 3.7.0**。直接在這裡選這個選項它會幫你下載匹配現在作業系統的安裝檔。 >[提示:關於安裝版本,請參考一下回帖裡 @antonsteemit的說明更新!謝謝!]  2 . 下載完成後,啟動程式開始安裝。在第一頁先勾選下方的 `Add Python 3.7 to PATH`,選完就直接選擇`Install Now`  3 . 等待安裝完成後,你的電腦就可以執行python的程式了!可以試著在搜尋欄輸入cmd,打開傳說中的command line (命令提示字元),試著在裡面直接輸入`python`,按下`enter`,如果有跳出結果就代表安裝成功囉~ <div class=pull-left>https://cdn.steemitimages.com/100x100/https://cdn.steemitimages.com/DQmaPCMkSbDFE2KwbaDaXRWwmbbSGN4msFnLQ4QCFqdk5FG/%E8%9E%A2%E5%B9%95%E5%BF%AB%E7%85%A7%202018-07-26%20%E4%B8%8A%E5%8D%889.51.13.png</div> >**提示!**此處所謂cmd命令是Windowns系統下的指令。Mac用戶請至:**應用程式-->工具程式-->終端機**進入命令提示模式。以下提及cmd或command line之段落處亦同。 ****  ## 安裝文字編輯器 安裝完python之後我們還需要安裝一個方便我們打程式的「文字編輯器」。其實要執行的程式碼也可以用「文字筆記本」等程式來寫,只是易讀性會比較差,也不會有帥氣的變色。因此今天推薦大家使用`Sublime`,一個開源而且非常輕便的文字編輯器~ 1 . 前往[Sublime官網下載頁面](https://www.sublimetext.com/3),點選有粗體字的版本下載:  2 . 執行下載檔案並安裝,應該不會遇到任何問題。安裝完就可以在`開始`的地方找到`Sublime`然後執行了。  就這麼簡單,現在你已經準備好可以開始啦! ## Hello World 所有程式語言的第一課,都是要讓程式印出「**Hello World!**」,所以我們也來Follow一下大家的腳步。不過為了讓自己的電腦不至於混亂,我建議大家建立一個資料夾,把所有我們會用到的檔案都放在裡面。我這裡在桌面的地方建立了一個名叫`python_steem`的資料夾,建立完成之後可以用sublime點選 `File` -> `Open folder`,然後選擇剛剛建立的資料夾,就可以開啟並在左邊看到現在還空空如也的資料夾。  好了,現在萬事具備,我們可以來寫第一個程式了。但希望大家不要太失望,因為這個程式只有一行: ``` print('Hello World!') ``` 其中`print()`就是我們要學會python的第一個function。它的作用很簡單,就是在螢幕上印出我們想要的東西。 如果發現你的Sublime文字編輯器都沒有變色,可以去右下角原本是`Plain Text`的地方改選為`Python`,Sublime就會很聰明的幫忙你標注出python的特殊語法了。或者你也可以直接選擇存檔(ctrl + s),假設存檔檔名叫做`helloworld.py`(下方副檔名選擇`.py`),存檔之後sublime也會自動辨識你的程式碼是python程式碼。  <sub>手動選擇語言</sub>  <sub>存檔為`helloworld.py` </sub> 完成之後就會看到你的Sublime左邊目錄結構下,已經多出了helloworld.py,並且也有帥氣的變色了~  接著我們就可以透過終端機(Command Line)來執行我們第一個腳本啦! 一樣先在搜尋欄輸入cmd,開啟命令提示字元。  接著我們會用到人生第一個command,就是`cd`。它的意思是change directory,就是移動現在所在位置。我們的command line一開啟的時候會在家目錄的地方,我們的python檔是放在桌面裡的`steem_python`資料夾,所以我們要將我們的command line先移動到該資料夾: ``` cd Desktop cd python_steem ```  接著就執行 ``` python helloworld.py ``` 前面的python,亦即我們要用`python`程式來run這個腳本,後面的helloworld.py就是我們剛剛寫好的那一段程式碼啦!執行結果,就會在command line上面看到`Hello World`的字樣囉!  是不是很輕鬆寫意呢?所以說python真的是一個很好上手的語言吧! 今天的介紹也就到這裡為止,下一次我們再來繼續探索python更多奇妙的功能吧! 我們下篇文章再見囉~下課!  <sub>*image - pixabay*</sub>
author | deanliu |
---|---|
permlink | da-series-learn-python-with-steem-01-python |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem","python","steem","cn-programming","cn"],"image":["https://steemitimages.com/0x0/https://cdn.steemitimages.com/DQmbeN1PpqQC2JE5HbpXatb3apUfFhe68fPLctT95FiiRHq/cover.png","https://cdn.steemitimages.com/DQmWTYaCjmRC9KreS9jkohUv14n5ZF9EE7VhCoTVhHiyZ6v/image.png","https://cdn.steemitimages.com/DQmdJaJNvYAsupT1aj9g5VG4Vekh84gK71wMq2qrvtRogVr/image.png","https://cdn.steemitimages.com/100x100/https://cdn.steemitimages.com/DQmaPCMkSbDFE2KwbaDaXRWwmbbSGN4msFnLQ4QCFqdk5FG/%E8%9E%A2%E5%B9%95%E5%BF%AB%E7%85%A7%202018-07-26%20%E4%B8%8A%E5%8D%889.51.13.png","https://cdn.steemitimages.com/DQmQQH3qLkD4b3oxhq1FFG9Lo2HYVjp6SmcAuMn98L8Xuod/image.png","https://cdn.steemitimages.com/DQmRR452aFVWjtGY1JWmEvHmMG85wfdqffQ8ehpTQijU4pm/image.png","https://cdn.steemitimages.com/DQmUcKxCXUxxixg1tJndF4hxouTtcRVpaKzZ3u7gL3guX2m/image.png","https://cdn.steemitimages.com/DQmbKM2BxRThWiXJsqeq4yZLmFqebKmL5xCDB7qpHJWSWri/image.png","https://cdn.steemitimages.com/DQmfFu8TGFqUpgMV9DwxpQJBJgBjRup7d5y7jucndmPiDAJ/image.png","https://cdn.steemitimages.com/DQmeaZPfhKRemmmdgpDSAx6Ujj12oH5f4sLGJZjGhq5noja/image.png","https://cdn.steemitimages.com/DQme9jBRYb3ekn63SEcoLNtP5Xy9Pj4HSrcUnLQXQLuyH7J/image.png","https://cdn.steemitimages.com/DQmdwixuM46BBRERYZwWGCE6BbzD3SbEfwaa48EqyeBfEP5/image.png","https://cdn.steemitimages.com/DQmZtb1AFARRGwUt9U87HeR2Zgm3CMQRwsiM3Jsbn1CjV68/image.png","https://cdn.steemitimages.com/DQmc2H9dt8aGCgsnamftsZUZhuPDSQELPkum1cAGyK9xWZX/image.png","https://cdn.steemitimages.com/DQmbTcEoAB7HRTxy11a1eDN8vREiGqxEMd7P3jJ3TGvGSTv/class-377117_1280.jpg"],"links":["https://steemit.com/da-learnpythonwithsteem/@deanliu/da-series-learn-python-with-steem-00-coding","https://www.python.org/downloads/","https://www.sublimetext.com/3"],"app":"steemit/0.1","format":"markdown","users":["deanliu","antonsteemit"]} |
created | 2018-07-26 01:57:06 |
last_update | 2018-07-27 05:18:09 |
depth | 0 |
children | 20 |
last_payout | 2018-08-02 01:57:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 23.094 HBD |
curator_payout_value | 3.749 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 3,854 |
author_reputation | 3,088,576,810,035,728 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,990,559 |
net_rshares | 13,468,786,235,962 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
jademont | 0 | 30,154,278,420 | 10% | ||
coinbitgold | 0 | 49,894,535,166 | 80% | ||
wongshiying | 0 | 137,752,386 | 100% | ||
blockchainbilly | 0 | 19,846,671,591 | 50% | ||
deanliu | 0 | 1,400,202,938,467 | 100% | ||
joythewanderer | 0 | 151,976,498,686 | 40% | ||
daynewright | 0 | 18,324,220,901 | 65% | ||
team-leibniz | 0 | 52,703,066,665 | 40% | ||
ace108 | 0 | 419,812,353,191 | 25% | ||
laoyao | 0 | 33,990,584,828 | 100% | ||
somebody | 0 | 1,259,955,091,260 | 100% | ||
midnightoil | 0 | 121,940,275,480 | 100% | ||
xiaohui | 0 | 684,675,808,773 | 100% | ||
oflyhigh | 0 | 2,434,012,304,844 | 100% | ||
xiaokongcom | 0 | 989,773,353 | 100% | ||
yulan | 0 | 14,351,163,967 | 100% | ||
rivalhw | 0 | 1,511,985,369,092 | 80% | ||
chinadaily | 0 | 209,572,781,835 | 100% | ||
helene | 0 | 769,654,494,307 | 100% | ||
ethansteem | 0 | 194,336,246,709 | 100% | ||
sweetsssj | 0 | 1,846,388,093,753 | 5% | ||
damarth | 0 | 721,207,416 | 3% | ||
boxcarblue | 0 | 224,388,711,693 | 100% | ||
rynow | 0 | 11,243,232,800 | 2% | ||
luneknight | 0 | 364,336,686 | 100% | ||
wanwenguo | 0 | 1,813,869,433 | 100% | ||
lalala | 0 | 117,790,660,214 | 100% | ||
dapeng | 0 | 86,239,004,638 | 100% | ||
devilwsy | 0 | 2,157,884,930 | 100% | ||
janiceting | 0 | 2,155,539,448 | 100% | ||
lydiachan | 0 | 26,316,631,358 | 100% | ||
blackbunny | 0 | 101,737,265,297 | 100% | ||
lingfei | 0 | 65,548,668,714 | 100% | ||
yyyy | 0 | 437,671,770 | 100% | ||
htliao | 0 | 359,915,985,208 | 54% | ||
wylo | 0 | 600,733,433 | 100% | ||
cryptoted | 0 | 169,279,984 | 100% | ||
jkkim | 0 | 76,723,970 | 10% | ||
nuagnorab | 0 | 758,435,530 | 100% | ||
victorier | 0 | 89,875,690,496 | 100% | ||
exec | 0 | 81,527,144,156 | 100% | ||
eval | 0 | 770,780,310 | 100% | ||
susanli3769 | 0 | 127,891,527,745 | 100% | ||
that1consultant | 0 | 297,818,091 | 100% | ||
sanzo | 0 | 363,539,630 | 100% | ||
sweetieprincess | 0 | 31,454,337,119 | 50% | ||
travelgirl | 0 | 48,675,542,976 | 40% | ||
zeekcryptominer | 0 | 308,920,869 | 100% | ||
catwomanteresa | 0 | 44,787,300,403 | 40% | ||
oldman28 | 0 | 10,768,661,861 | 50% | ||
liangfengyouren | 0 | 1,577,716,219 | 50% | ||
mangoanddaddy | 0 | 1,810,940,517 | 80% | ||
marcoharley1995 | 0 | 609,061,897 | 100% | ||
fr3eze | 0 | 72,139,047,119 | 50% | ||
tvb | 0 | 37,409,983,327 | 50% | ||
skenan | 0 | 88,064,379,887 | 50% | ||
davidke20 | 0 | 1,744,286,752 | 10% | ||
ms8988 | 0 | 593,411,791 | 100% | ||
yingpingzhang | 0 | 13,633,688,111 | 100% | ||
dancingapple | 0 | 4,930,522,924 | 22% | ||
kettleandseagull | 0 | 9,413,213,141 | 100% | ||
xiaoshancun | 0 | 162,800,565 | 100% | ||
bobdos | 0 | 243,275,334,238 | 100% | ||
lindalex | 0 | 206,044,592 | 50% | ||
winniex | 0 | 5,056,923,966 | 10% | ||
kimxinfo | 0 | 9,046,430,514 | 100% | ||
windowglass | 0 | 17,287,093,064 | 50% | ||
cnbuddy | 0 | 4,243,249,106 | 0.1% | ||
chann | 0 | 4,815,884,991 | 20% | ||
santiagocazorla | 0 | 605,815,539 | 100% | ||
stabilowl | 0 | 59,175,315,245 | 54% | ||
taos | 0 | 176,730,740 | 50% | ||
lebin | 0 | 22,261,067,506 | 5% | ||
itchyfeetdonica | 0 | 15,330,127,872 | 100% | ||
coindzs | 0 | 170,263,072 | 100% | ||
antonsteemit | 0 | 14,773,399,883 | 100% | ||
conradsuperb | 0 | 23,047,187,575 | 100% | ||
cathvanlael | 0 | 128,052,051 | 100% | ||
comingback | 0 | 256,015,981 | 12% | ||
nostalgic1212 | 0 | 7,496,165,920 | 50% | ||
btccurrency1 | 0 | 55,103,324 | 100% | ||
ethanlee | 0 | 10,608,967,080 | 100% | ||
liuzg | 0 | 264,836,056 | 100% | ||
steemerap | 0 | 276,172,363 | 2.7% | ||
facttechz | 0 | 196,025,961 | 13% | ||
team-cn | 0 | 125,204,146,495 | 100% | ||
shine.wong | 0 | 191,194,349 | 100% | ||
menshealthblog | 0 | 493,532,857 | 100% | ||
jidgabol | 0 | 122,028,506 | 100% | ||
kissfirer | 0 | 550,538,186 | 100% | ||
sdream | 0 | 98,820,039 | 100% | ||
lkvictor2005 | 0 | 7,223,306,789 | 100% |
以前,我安装过这原味的。后来上课用Anaconda的觉得不错。虽然是3.6.
author | ace108 |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t025959263z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-26 02:59:57 |
last_update | 2018-07-26 02:59:57 |
depth | 1 |
children | 0 |
last_payout | 2018-08-02 02: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 | 38 |
author_reputation | 1,223,855,656,019,325 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,995,385 |
net_rshares | 0 |
#### 微更新 突然發現python3.7 可能未來要安裝別的套件會有bug ,所以更新一下,鼓勵大家下載python的時候,在官方網頁往下滑一點,選擇安裝 python 3.6.5 版本。 懶人連結: * Windows: [下載](https://www.python.org/ftp/python/3.6.5/python-3.6.5-amd64.exe) * Mac: [下載](https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.6.pkg)  點進3.6.5之後再往下滑會看到**file**,就是選擇下載自己安裝器的地方,在選擇對應的版本即可。 
author | antonsteemit |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t082405190z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"image":["https://cdn.steemitimages.com/DQmQjWPG9NvL1HCUCnbv1GzPpUHTFLgSJEi54hm7rLcSWBy/image.png","https://cdn.steemitimages.com/DQmQ9zi9uhtnseZN6CH3bDvKDxuwYKwEYf8HNbEncY3yPH7/image.png"],"links":["https://www.python.org/ftp/python/3.6.5/python-3.6.5-amd64.exe","https://www.python.org/ftp/python/3.6.5/python-3.6.5-macosx10.6.pkg"],"app":"steemit/0.1"} |
created | 2018-07-26 08:24:06 |
last_update | 2018-07-26 08:24:06 |
depth | 1 |
children | 3 |
last_payout | 2018-08-02 08:24:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.357 HBD |
curator_payout_value | 0.119 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 504 |
author_reputation | 7,534,465,964,895 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,019,287 |
net_rshares | 250,036,239,011 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
deanliu | 0 | 250,036,239,011 | 17% |
對不起麻煩大家了嗚嗚,在此跟大家磕頭 (Orz)
author | antonsteemit |
---|---|
permlink | re-antonsteemit-re-deanliu-da-series-learn-python-with-steem-01-python-20180726t082442128z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-26 08:24:42 |
last_update | 2018-07-26 08:24:42 |
depth | 2 |
children | 0 |
last_payout | 2018-08-02 08:24: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 | 24 |
author_reputation | 7,534,465,964,895 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,019,335 |
net_rshares | 0 |
@deanliu和@antonsteemit二位善举! ------------ 司梦人,你们最棒! [You are a steemian who wants Steem to be best! 👍](https://steemit.com/wsteem/@wsteem/steem-what-are-steem-witnesses-and-why-you-should-support-them) ------------
author | sdream |
---|---|
permlink | re-antonsteemit-re-deanliu-da-series-learn-python-with-steem-01-python-20180727t022326349z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"users":["deanliu","antonsteemit"],"links":["https://steemit.com/wsteem/@wsteem/steem-what-are-steem-witnesses-and-why-you-should-support-them"],"app":"steemit/0.1"} |
created | 2018-07-27 02:23:27 |
last_update | 2018-07-27 02:23:27 |
depth | 2 |
children | 0 |
last_payout | 2018-08-03 02:23:27 |
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 | 215 |
author_reputation | 591,097,764,011 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 66,106,011 |
net_rshares | 0 |
没事没事,再来一次复习下! ~~我下载了个x86-64的exe,是不是会和32位的有什么区别?~~发现我好像不是AMD的,算了,还是不作死了,装回我的3.6.5
author | shine.wong |
---|---|
permlink | re-antonsteemit-re-deanliu-da-series-learn-python-with-steem-01-python-20180727t052906912z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"community":"steempeak","app":"steempeak"} |
created | 2018-07-27 05:29:09 |
last_update | 2018-07-27 05:31:54 |
depth | 2 |
children | 0 |
last_payout | 2018-08-03 05:29:09 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.018 HBD |
curator_payout_value | 0.005 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 80 |
author_reputation | 1,329,335,530,903 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,119,513 |
net_rshares | 13,734,065,218 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
antonsteemit | 0 | 13,734,065,218 | 100% |
第一課作業 
author | kimxinfo |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t092739834z |
category | da-learnpythonwithsteem |
json_metadata | {"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["da-learnpythonwithsteem"],"users":[],"links":[],"image":["https://ipfs.busy.org/ipfs/QmWQWs4eewHEuyG4HemH7GadzoF6Ropzarck2kb5y8d7bb"]} |
created | 2018-07-26 09:27:39 |
last_update | 2018-07-26 09:27:39 |
depth | 1 |
children | 2 |
last_payout | 2018-08-02 09:27:39 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.106 HBD |
curator_payout_value | 0.034 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 101 |
author_reputation | 1,748,728,029,640 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,023,799 |
net_rshares | 75,040,874,222 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
deanliu | 0 | 75,040,874,222 | 5% |
Hello 劉美女 比較對吧!^_^
author | deanliu |
---|---|
permlink | re-kimxinfo-re-deanliu-da-series-learn-python-with-steem-01-python-20180727t052203579z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-27 05:22:03 |
last_update | 2018-07-27 05:22:03 |
depth | 2 |
children | 1 |
last_payout | 2018-08-03 05: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 | 18 |
author_reputation | 3,088,576,810,035,728 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,118,955 |
net_rshares | 9,046,430,514 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
kimxinfo | 0 | 9,046,430,514 | 100% |
你....有抓bug的天份
author | kimxinfo |
---|---|
permlink | re-deanliu-re-kimxinfo-re-deanliu-da-series-learn-python-with-steem-01-python-20180727t053143449z |
category | da-learnpythonwithsteem |
json_metadata | {"community":"busy","app":"busy/2.5.3","format":"markdown","tags":["da-learnpythonwithsteem"],"users":[],"links":[],"image":[]} |
created | 2018-07-27 05:31:42 |
last_update | 2018-07-27 05:31:42 |
depth | 3 |
children | 0 |
last_payout | 2018-08-03 05: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 | 13 |
author_reputation | 1,748,728,029,640 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,119,702 |
net_rshares | 0 |
很好,很好👍👍👍
author | kona |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t025645783z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-26 02:56:45 |
last_update | 2018-07-26 02:56:45 |
depth | 1 |
children | 0 |
last_payout | 2018-08-02 02:56: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 | 8 |
author_reputation | 39,758,138,507,499 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,995,137 |
net_rshares | 0 |
我觉得编程最难的是算法
author | liuzg |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t022027394z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-26 02:20:27 |
last_update | 2018-07-26 02:21:54 |
depth | 1 |
children | 2 |
last_payout | 2018-08-02 02:20:27 |
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 | 11 |
author_reputation | 20,078,417,529,815 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 65,992,307 |
net_rshares | 0 |
同意
author | joythewanderer |
---|---|
permlink | re-liuzg-re-deanliu-da-series-learn-python-with-steem-01-python-20180726t080653904z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-26 08:07:09 |
last_update | 2018-07-26 08:07:09 |
depth | 2 |
children | 1 |
last_payout | 2018-08-02 08:07: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 | 2 |
author_reputation | 1,916,082,145,948,706 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,018,052 |
net_rshares | 486,963,300 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
naegling11 | 0 | 486,963,300 | 2% |
算法是什麼?
author | deanliu |
---|---|
permlink | re-joythewanderer-re-liuzg-re-deanliu-da-series-learn-python-with-steem-01-python-20180727t051836653z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-27 05:18:36 |
last_update | 2018-07-27 05:18:36 |
depth | 3 |
children | 0 |
last_payout | 2018-08-03 05:18: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 | 6 |
author_reputation | 3,088,576,810,035,728 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,118,698 |
net_rshares | 0 |
我在瀏覽器默默的開了一個新的文件夾,專門mark你這個系列的文章🎉
author | nostalgic1212 |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t045230299z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-26 04:52:30 |
last_update | 2018-07-26 04:52:30 |
depth | 1 |
children | 1 |
last_payout | 2018-08-02 04:52: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 | 33 |
author_reputation | 1,482,207,800,641,606 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,003,783 |
net_rshares | 0 |
👏👏
author | deanliu |
---|---|
permlink | re-nostalgic1212-re-deanliu-da-series-learn-python-with-steem-01-python-20180727t052339867z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-27 05:23:39 |
last_update | 2018-07-27 05:23:39 |
depth | 2 |
children | 0 |
last_payout | 2018-08-03 05:23:39 |
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 | 2 |
author_reputation | 3,088,576,810,035,728 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,119,085 |
net_rshares | 0 |
感谢!报班啦。 DA <==> BM,乍一看似乎有点儿……😄
author | sdream |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t063706249z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-26 06:37:06 |
last_update | 2018-07-26 06:37:06 |
depth | 1 |
children | 0 |
last_payout | 2018-08-02 06:37: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 | 30 |
author_reputation | 591,097,764,011 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 0 |
post_id | 66,011,469 |
net_rshares | 0 |
👏,好棒!!我把我的3.6更新到3.7了,我用vsCode(因为懒得装了!)
author | shine.wong |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t071655615z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"community":"steempeak","app":"steempeak"} |
created | 2018-07-26 07:16:57 |
last_update | 2018-07-26 07:16:57 |
depth | 1 |
children | 3 |
last_payout | 2018-08-02 07:16: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 | 38 |
author_reputation | 1,329,335,530,903 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,014,358 |
net_rshares | 0 |
哎呀,忘記說了其實3.6反而穩定一些 (拜託未來遇到bug請大家裝回3.6的時候不要恨我xD) 只是覺得安裝最新板對大家來說也比較容易而已啦~ 哈哈
author | antonsteemit |
---|---|
permlink | re-shinewong-re-deanliu-da-series-learn-python-with-steem-01-python-20180726t080739773z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"app":"steemit/0.1"} |
created | 2018-07-26 08:07:39 |
last_update | 2018-07-26 08:07:39 |
depth | 2 |
children | 2 |
last_payout | 2018-08-02 08:07:39 |
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 | 74 |
author_reputation | 7,534,465,964,895 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,018,095 |
net_rshares | 0 |
我已经装了,并把3.6删了,哈哈哈,还好不麻烦~顺带[交作业](https://steempeak.com/cn/@shine.wong/da-series-learn-python-with-steem-01)!
author | shine.wong |
---|---|
permlink | re-antonsteemit-re-shinewong-re-deanliu-da-series-learn-python-with-steem-01-python-20180726t081005276z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"links":["https://steempeak.com/cn/@shine.wong/da-series-learn-python-with-steem-01"],"app":"steemit/0.1"} |
created | 2018-07-26 08:10:06 |
last_update | 2018-07-26 08:10:06 |
depth | 3 |
children | 1 |
last_payout | 2018-08-02 08:10:06 |
cashout_time | 1969-12-31 23:59:59 |
total_payout_value | 0.106 HBD |
curator_payout_value | 0.034 HBD |
pending_payout_value | 0.000 HBD |
promoted | 0.000 HBD |
body_length | 107 |
author_reputation | 1,329,335,530,903 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,018,286 |
net_rshares | 75,040,874,222 |
author_curate_reward | "" |
voter | weight | wgt% | rshares | pct | time |
---|---|---|---|---|---|
deanliu | 0 | 75,040,874,222 | 5% |
很久没有玩DOS命令了,居然一个cd折腾我半天!
author | shine.wong |
---|---|
permlink | re-deanliu-da-series-learn-python-with-steem-01-python-20180726t090449010z |
category | da-learnpythonwithsteem |
json_metadata | {"tags":["da-learnpythonwithsteem"],"community":"steempeak","app":"steempeak"} |
created | 2018-07-26 09:04:51 |
last_update | 2018-07-26 09:04:51 |
depth | 1 |
children | 0 |
last_payout | 2018-08-02 09:04:51 |
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 | 24 |
author_reputation | 1,329,335,530,903 |
root_title | "[DA series - Learn Python with Steem #01] 安裝Python、文字編輯器與哈囉!" |
beneficiaries | [] |
max_accepted_payout | 1,000,000.000 HBD |
percent_hbd | 10,000 |
post_id | 66,022,126 |
net_rshares | 0 |