shiziwen (36)in #steem • 5 years agoSteem与Steem Power的对应和转换关系最近研究了一下steem与steem power之前的对应和转换关系,因为苦于代码中常常出现的 vesting_shares 以及通过接口获取的数据中 SP 的数值,老是对应不上,这里做一下总结。…shiziwen (36)in #python • 5 years agopython中的数组和列表这边文章,介绍一下Python 中最常见的两种数据结构:列表(list)和元组(tuple)。 相同点 可以放置任意数据类型的有序集合 Python 中的列表和元组都支持负数索引…shiziwen (36)in #python • 5 years agoA simple implementation of trie in python3This is the implementation of trie in python3, you can get the question of leetcode from implement-trie-prefix-tree . class Trie: