python
文章平均质量分 77
jlook
为情怀而生,为理想而战
展开
-
An Introduction to Interactive Programming in Python 第五课作业 memory
# implementation of card game - Memoryimport simpleguiimport randomcard_list = []frame_width = 800card_number = 16card_width = frame_width / card_numberturn = 0current = []原创 2014-10-19 18:25:40 · 488 阅读 · 0 评论 -
An Introduction to Interactive Programming in Python 第六课作业 Blackjack
按照课程要求,只封装了Card类、Hand类、Deck类,其实更一进原创 2014-11-02 08:37:17 · 1480 阅读 · 0 评论 -
simpleguitk载入声音和图片文件遇到的几个问题
载入图片用的PILImage,载入声音用pygame.mixer1、l原创 2014-11-03 09:35:41 · 3652 阅读 · 0 评论 -
python库的那些事
为了体验 ipython notebook --pylab=inline原创 2014-10-08 21:09:51 · 422 阅读 · 0 评论 -
An Introduction to Interactive Programming in Python 最后的作业 -- 太空战机
游戏本身可玩性不高,为实现而实现,对象的封装和逻辑控制有点混乱。t原创 2014-11-19 19:01:43 · 1024 阅读 · 0 评论 -
Python编程用到的库
1、网络编程:轻量级:web.原创 2014-09-30 13:57:33 · 475 阅读 · 0 评论 -
An Introduction to Interactive Programming in Python 第四课作业 Pong
# Implementation of classic arcade game Pongimport simpleguiimport random# initialize globals - pos and vel encode vertical info for paddlesWIDTH = 600HEIGHT = 400 BALL_RADIUS = 20PAD_W原创 2014-10-19 18:15:16 · 602 阅读 · 0 评论 -
Python模块常用的几种安装方式
原文:Python模块常用的几种安装方式Python模块安装方法一、方法1: 单文件模块直接把文件拷贝到 $python_dir/Lib二、方法2: 多文件模块,带setup.py下载模块包,进行解压,进入模块文件夹,执行:python setup.py install三、 方法3:easy_install 方式 先下转载 2014-09-28 10:50:52 · 762 阅读 · 0 评论