摘要:
source: http://blog.sina.com.cn/s/blog_a3f0d68201016uhz.html 前阵子稍微学了下wxpython,写了个简易的计算器作为练习,详细代码如下: #coding=utf8import wx... 阅读全文
摘要:
source: http://www.iteye.com/topic/1092772 前言 本文主要记录 Python 中一些常用技巧,所描述的是告诉你怎么写才是更好? 如果你并不熟悉Python语法,希望你能在下面代码片段中看到Python的简单... 阅读全文
摘要:
source: http://www.cmuch.com/article.asp?id=258 ImportError: No module named images 解决 体验wxpython IN action的时候 ImportError: No mod... 阅读全文
摘要:
收藏不好用,以后看到好文直接拷贝过来!! source:http://blog.csdn.net/wh62592855/article/details/6859656 先来看个例子: [python] view plain c... 阅读全文
摘要:
source: http://blog.sina.com.cn/s/blog_523491650100hikg.html server端 import socketif __name__ == '__main__': sock = socket.so... 阅读全文
摘要:
source: http://www.cr173.com/html/19245_1.html 列表与字典(还没接触到)是Python中两个主要的数据类型。他们可以被修改,可以增长可以缩短,也可以嵌套。 列表 list 列表可以完成大多数集合类... 阅读全文
摘要:
转: http://www.chengxuyuans.com/Python/32723.html pydev是一个很好的开发工具,总有一个问题让我很头痛,使用第三方库的时候,总是会提示 Unresolved import,以 import MySQLdb... 阅读全文
摘要:
source: http://blog.163.com/lxq_102172/blog/static/133398015201231012213428/ # -*- coding: utf-8 -*-from __future__ import divisi... 阅读全文
摘要:
source: http://www.qiyeku.com/xinwen/1130530.html from Tkinter import *def frame(root,side): w=Frame(root) w.pack(side=side,... 阅读全文
摘要:
>>> a=1 >>> a 1 >>> b Traceback (most recent call last): File "", line 1, in b NameError: name 'b' is not defined >>> b=a >... 阅读全文