03 2018 档案

摘要:Python——使用matplotlib绘制柱状图 1、基本柱状图 首先要安装matplotlib(http://matplotlib.org/api/pyplot_api.html#matplotlib.pyplot.plot) 可以使用pip命令直接安装 [python] view plain  阅读全文
posted @ 2018-03-09 19:45 decode126 阅读(45714) 评论(0) 推荐(0)
摘要:在android上运行python脚本,或者在android上使用python交互界面,对熟悉python的研究或开发人员来说,是一件很有吸引力的事情,因为python脚本真是非常高效,另外,有很多非常好的库 android官方目前没有支持在android设备运行python,但是网上有一些项目组做 阅读全文
posted @ 2018-03-09 19:40 decode126 阅读(15813) 评论(0) 推荐(0)
摘要:下载 Scripting Layer for Android (SL4A) https://github.com/damonkohler/sl4a https://www.tutorialspoint.com/sl4a/ https://mafiadoc.com/python-for-android 阅读全文
posted @ 2018-03-09 18:18 decode126 阅读(948) 评论(0) 推荐(0)
摘要:虽然刷题一直饱受诟病,不过不可否认刷题确实能锻炼我们的编程能力,相信每个认真刷题的人都会有体会。现在提供在线编程评测的平台有很多,比较有名的有 hihocoder,LintCode,以及这里我们关注的 LeetCode。 LeetCode 是一个非常棒的 OJ(Online Judge)平台,收集了 阅读全文
posted @ 2018-03-06 10:03 decode126 阅读(554) 评论(0) 推荐(0)
摘要:local function encodeBase64(source_str) local b64chars = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/' local s64 = '' local str = 阅读全文
posted @ 2018-03-04 16:13 decode126 阅读(5912) 评论(0) 推荐(0)