随笔分类 -  Python小程序

利用map和reduce编写一个str2float函数,把字符串'123.456'转换成浮点数123.456:
摘要:1 #!/usr/bin/env python3 2 # -*- coding: utf-8 -*- 3 4 from functools import reduce 5 6 CHAR_TO_INT = { 7 '0': 0, 8 '1': 1, 9 '2': 2, 10 '3': 3, 11 '4': 4, 12 '5': ... 阅读全文
posted @ 2017-01-12 15:06 加油AlwaysWin 阅读(2332) 评论(0) 推荐(0)
Python编写的记事本小程序
摘要:用Python中的Tkinter模块写的一个简单的记事本程序,Python2.x和Python3.x的许多内置函数有所改变,所以以下分为Python2.x和Python3.x版本。 一.效果展示: 二.Python3.x版本的记事本程序 三.Python2.x版本的记事本程序 阅读全文
posted @ 2016-12-28 09:30 加油AlwaysWin 阅读(7612) 评论(2) 推荐(1)