看板
[ Python ]
討論串[問題] 卡關了...
共 5 篇文章
內容預覽:
1. 丟硬幣:隨機. http://docs.python.org/lib/module-random.html. 2. 丟一百次:迴圈. http://docs.python.org/tut/node6.html#SECTION006200000000000000000. 3. head/tail
(還有51個字)
內容預覽:
More pythontic way:. import random. times = 100. history = [random.choice(('head', 'tail')) for i in range(times)]. for i in history:. print i. print
(還有283個字)