Login
Discover
Waves
Decks
Plus
Login
Signup
Topics
New
Trending
Hot
New
New
Trending
Hot
New
Controversial
Rising
Promoted
da-learnpythonwithsteem
deanliu
da-learnpythonwithsteem
Monday, September 10, 2018 12:46 PM
[DA series - Learn Python with Steem #13] Steem 小工具DIY #5 交易紀錄查詢
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #12] Steem 小工具DIY #4 - 投票幫手
$ 12.992
125
8
8
deanliu
da-learnpythonwithsteem
Thursday, September 6, 2018 3:57 PM
[DA series - Learn Python with Steem #12] Steem 小工具DIY #4 投票幫手
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #11] Steem 小工具DIY #3 - 我的文章列表(二)
$ 25.645
143
9
10
yjcps
blog
Sunday, August 26, 2018 7:24 AM
Learn Python with Steem #10 #11 笔记
Learn Python with Steem #10 #11 笔记 [toc] 划重点 获取用户的文章列表 通过 steem.Steem.get_account_history 获取用户的动态,从中筛选出文章的 permlink。 再用 steem.Steem.get_content 方法获取每篇文章的详细信息。 其实也可以用 steem.blog.Blog 获取用户所有的文章信息。 编程练习
$ 1.386
27
16
deanliu
da-learnpythonwithsteem
Friday, August 24, 2018 1:30 AM
[DA series - Learn Python with Steem #11] Steem 小工具DIY #3 - 我的文章列表(二)
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #10] Steem 小工具DIY #2 - 我的文章列表(一)
$ 21.110
144
11
3
asterkame
YAF - Young Art Fair
Thursday, August 14, 2025 9:21 AM
Promoted
Drawing of Crystal Ball with Heart Shape
Hello Everyone! I draw a picture of crystal ball today. It has a red heart shape inside. I drew a crystal ball picture the other day. I want to draw this again, so I add a heart shape to make it more
$ 11.397
418
4
1
yjcps
blog
Sunday, August 19, 2018 10:00 PM
Learn Python with Steem #09 笔记
Learn Python with Steem #09 笔记 [toc] 划重点 遍历字典 利用dict.items()方法,用一个循环语句遍历整个字典的所有元素。 转换 Reputation 和 Voting Power 的原始数据 直接获取的某些数据是生的,需要煮(转换)一下才能吃。 解析时间 使用Python的dateutil和datetime模块来解析和处理时间数据。 编程练习 from steem
$ 1.142
29
4
deanliu
da-learnpythonwithsteem
Saturday, August 18, 2018 12:54 AM
[DA series - Learn Python with Steem #10] Steem 小工具DIY #2 - 我的文章列表(一)
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #09] Steem 小工具DIY #1 - 我的Steem小偵探
$ 17.751
142
16
10
yjcps
blog
Wednesday, August 15, 2018 10:41 PM
Learn Python with Steem #08 笔记
Learn Python with Steem #08 笔记 [toc] 划重点 模块、包 模块是一个XXX.py文件,Python中以模块的方式组织代码片段(函数,类,变量)。 包是一个目录,里面有一些模块或者子目录,Python中以包的方式管理模块。 使用模块 要使用模块,需要先导入模块,使用关键字import来导入模块。 这是我们使用Python标准库和第三方库的方式。 安装模块
$ 1.177
27
1
1
yjcps
blog
Saturday, August 11, 2018 6:03 AM
在Windows导入python-steem遇到的问题
我以为成功安装python-steem库就可以愉快地玩耍了,这个想法还是太单纯,谁知道在导入steem模块的时候又出现问题了:无法导入winrandom模块。 from steem import Steem s = Steem() balance = s.get_account('yjcps')['sbd_balance'] print(balance)
$ 1.153
30
6
russia-btc
Photography Lovers
Sunday, August 17, 2025 8:47 AM
Promoted
An unforgettable day at the Novosibirsk Zoo: a family adventure with tigers, squirrels and floating sweets!
55.05674, 82.88887
Lions roar, squirrels pose, and kids blow steam out of sweets! Our day at the Novosibirsk Zoo is unforgettable!
$ 9.983
318
10
7
deanliu
da-learnpythonwithsteem
Friday, August 10, 2018 12:56 AM
[DA series - Learn Python with Steem #09] Steem 小工具DIY #1 - 我的Steem小偵探
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #08] 函式庫(Modules)
$ 24.241
156
14
3
deanliu
da-learnpythonwithsteem
Wednesday, August 8, 2018 5:02 AM
[DA series - Learn Python with Steem #08] 函式庫(Modules)的安裝與使用,準備好玩Steem!
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #07] 類別 第#08堂課,今天我們來學習Python的~~函式庫 !準備進入玩Steem的階段囉~~
$ 26.023
139
29
4
yjcps
blog
Tuesday, August 7, 2018 2:27 AM
Learn Python with Steem #07 笔记
Learn Python with Steem #07 笔记 [toc] 划重点 类与对象 把一些具有共同特征的对象的属性和行为(方法)抽取出来,将其抽象化,定义为类。 也就是说类是对象的模板,按照模板(类)实例化(具体化),这就是对象。 类是抽象的概念,而对象是具体的东西。 类的属性与方法 类的属性和方法都是一群对象的共同特征。 属性是那些对象的静态特征,在类中定义的变量。
$ 1.312
25
deanliu
steem
Tuesday, August 7, 2018 2:09 AM
[閒聊] 寒冬未離,春天猶遠
image - pixabay 最近,看到收入裡面,SBD的佔比竟然已經下降到5%左右了... 有點驚訝,似乎預告著0 SBD時代又要來臨了? 我印象中,收入裡都只有Steem跟SP的日子,是好久好久以前了。那段時間,Steem是一把一把地收,都是Steem,讓人感覺像是要下市的股票一樣,似乎也是收好玩兒的...
$ 20.876
158
11
1
sahi1
Hive Food
Sunday, August 17, 2025 10:30 AM
Promoted
High Calories Milk Shake For Weight Gain
Hello guys. Hope you are all well. I have come to this community after a long time to share a very delicious and healthy shake. This shake is great for gaining weight. I recently started a diet to gain
$ 4.298
76
5
1
deanliu
da-learnpythonwithsteem
Monday, August 6, 2018 6:13 AM
[DA series - Learn Python with Steem #07] 類別
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #06] 函式 第#07堂課,今天我們來學習Python的~~類別 ! Python的類別(Class)
$ 17.922
119
9
2
yjcps
blog
Friday, August 3, 2018 4:10 PM
Learn Python with Steem #06 笔记
Learn Python with Steem #06 笔记 [toc] 划重点 函数 函数是实现某个特定功能的一段代码。 将同一类相对独立的功能写成一个个函数,放到同一个py文件里,这就是一个模块。 你可以试试输入 help(math) 看是不是这样的。 函数的结构 函数由输入参数、函数体、输出参数组成。 通过输入参数接收要处理的数据, 在函数体里实现要完成的功能, 最后将计算结果通过输出参数返回给使用者。
$ 1.366
22
deanliu
da-learnpythonwithsteem
Friday, August 3, 2018 2:03 AM
[DA series - Learn Python with Steem #06] 函式
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #05] 基本資料結構 第#06堂課,今天我們來學習Python的~~函式 ! Python的函式
$ 19.835
161
11
2
deanliu
da-learnpythonwithsteem
Thursday, August 2, 2018 1:27 AM
[DA series - Learn Python with Steem #05] 基本資料結構
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #04] 迴圈 第#05堂課,今天我們來學習Python的~~基本資料結構 !
$ 25.633
175
16
3
qwerrie
Photography Lovers
Sunday, August 17, 2025 11:25 PM
Promoted
Sauron's evil eye?..
My life has been pretty hectic today! (well, according to my usual modest standards). It included a short 40-min photoshoot session for my new stamps in the morning, before I headed to my office for usual
$ 5.690
281
9
2
yjcps
blog
Tuesday, July 31, 2018 12:45 PM
Learn Python with Steem #04 笔记
Learn Python with Steem #04 笔记 [toc] 划重点 循环 人做重复性的事情很低效和枯燥,相比之下让机器来完成这些事更适合,所以在大鹏的《学R》中说,循环是个救世主。 循环由循环条件和循环体组成:满足条件,程序就重复做一类事情,要重复做的事情就是循环体,用缩进体现。 循环的类型 循环可分两类:已知重复次数,用 for
$ 0.033
8
2
yjcps
blog
Tuesday, July 31, 2018 12:30 PM
Learn Python with Steem #03 笔记
Learn Python with Steem #03 笔记 [toc] 划重点 分支结构 Python的分支结构用if、elif、else关键字来构造,可以是多分支,也可以嵌套。 代码块 Python中用缩进的方式构造代码块,程序的层次结构一目了然。 交互 使用input()函数输入数据,实现人与程序的交互。 编程练习 # 写作业 a = float(input('Please enter the
$ 1.442
23
deanliu
da-learnpythonwithsteem
Tuesday, July 31, 2018 2:21 AM
[DA series - Learn Python with Steem #04] 迴圈
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #03] 邏輯判斷 第#04堂課,今天我們來學習另一個也是非常重要的主題:迴圈 。 Python的迴圈
$ 30.644
151
17
2
deanliu
da-learnpythonwithsteem
Monday, July 30, 2018 2:13 AM
[DA series - Learn Python with Steem #03] 邏輯判斷
[DA series - Learn Python with Steem] 是DA(@deanliu & @antonsteemit)關於「從Python程式語言實做Steem區塊鏈的入門」的系列,歡迎趕緊入列學習! 前情提要:[DA series - Learn Python with Steem #02] 變數與資料型態 新的一週開始了!讓我們繼續學習吧!
$ 25.450
158
35
3
Top communities
Create decentralized community