08 2012 档案

Simple Tkinter file dialog(open, save as, open directory, etc)
摘要:http://code.activestate.com/recipes/438123-file-tkinter-dialogs/ 阅读全文

posted @ 2012-08-20 16:48 bian 阅读(279) 评论(0) 推荐(0)

Convert between str and other buildin data type in Python
摘要:Convert a build in data type(int, tuple, list dict, str) to str is easy. str() can handle thisstr(12) => '12'str([1,2,'One']) => '[1,2,"One"]'str({1:'One', 2:'Two'}) => "{1:'One', 2:'Two'}"...So how to do the conver 阅读全文

posted @ 2012-08-13 14:08 bian 阅读(170) 评论(0) 推荐(0)

导航