Python_Coursera课程
William_Dong
Focus on machine learning, data mining, and text mining.
Research about text mining and social media analytics.
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Coursera_An Introduction to Interactive Programming in Python_Music Player
http://www.codeskulptor.org/#user38_eG2ICYkUDG_0.py原创 2014-11-13 00:37:50 · 887 阅读 · 0 评论 -
Coursera_An Introduction to Interactive Programming in Python_Mini-project # 4 Pong
又一次迟交导致交不上了。。原创 2014-10-20 22:57:39 · 765 阅读 · 0 评论 -
Coursera_An Introduction to Interactive Programming in Python_Mini-project # 3 Stopwatch
# "Stopwatch: The Game"import simplegui# define global variablescurrent_time = 0 #for example: 12 represents 1.2 seconds.total_win = 0total_try = 0flag = True# define helper function format原创 2014-10-09 15:33:07 · 634 阅读 · 0 评论 -
Coursera_An Introduction to Interactive Programming in Python_Mini-project # 5 Memory
http://www.codeskulptor.org/#user38_6vsNKw1hBx_9.py原创 2014-11-05 11:25:59 · 612 阅读 · 0 评论 -
Coursera_An Introduction to Interactive Programming in Python_Mini-project # 2 Guess the number
因为没来得及上传,只能保留在此。原创 2014-10-09 09:18:55 · 801 阅读 · 0 评论 -
Coursera_An Introduction to Interactive Programming in Python_Mini-project # 7 Spaceship
http://www.codeskulptor.org/#user38_mT9p7Gz3Un_9.py原创 2014-11-14 10:19:15 · 970 阅读 · 0 评论 -
Coursera_An Introduction to Interactive Programming in Python_Mini-project # 6 Blackjack
http://www.codeskulptor.org/#user38_pPTeGUCnFc_15.py# Mini-project #6 - Blackjackimport simpleguiimport random# load card sprite - 936x384 - source: jfitz.comCARD_SIZE = (72, 96)CARD_CE原创 2014-11-10 13:39:56 · 748 阅读 · 0 评论 -
Coursera_An Introduction to Interactive Programming in Python_Mini-project # 1 Rock-paper-scissors
# Rock-paper-scissors-lizard-Spock# 0 - rock# 1 - Spock# 2 - paper# 3 - lizard# 4 - scissorsimport randomdef name_to_number(name): if name == "rock": return 0 elif name == "原创 2014-10-09 10:24:27 · 742 阅读 · 0 评论 -
Coursera_An Introduction to Interactive Programming in Python_Mini-project # 8 RiceRock
http://www.codeskulptor.org/#user38_Ef6manEpXc_21.py完成所有要求# implementation of RiceRocksimport simpleguiimport mathimport random# globals for user interfaceWIDTH = 800HEIGHT = 600score = 0live...原创 2014-11-16 15:27:56 · 704 阅读 · 0 评论
分享