xxxx18一60岁hd中国/日韩女同互慰一区二区/西西人体扒开双腿无遮挡/日韩欧美黄色一级片 - 色护士精品影院www

資源簡介

利用面向對象的方式實現邏輯層顯示層分離,用pygame完成響應鍵盤敲擊速度的游戲:隨機截取一段英文短文。統計一分鐘內用戶對照輸入的正確的單詞數量并實時根據鍵盤敲擊的速度顯示屏幕背景色。越快屏幕顏色就越偏向綠色。越慢越偏向紅色。ps:如果輸入完了一整段一分鐘還沒到就換下一段

資源截圖

代碼片段和文件信息

#?-*-?coding:?utf-8?-*-

import?pygame


class?Caption(pygame.sprite.Sprite):
????‘‘‘
????實時顯示打字性能
????‘‘‘
????def?__init__(self):
????????pygame.sprite.Sprite.__init__(self)
????????self.text?=?“Speed:?%.1f/min?correct?words:?%s/%s?time:?%d?s“?%?(0?0?0?60)
????????self.update()

????def?update(self):
????????self.image?=?pygame.font.Font(None?26).render(self.text?1?(0?0?0))
????????self.rect?=?self.image.get_rect()

????def?setText(self?speed?words?corrWords?countDownTime):
????????self.text?=?“Speed:?%.1f/min?correct?words:?%s/%s?time:?%d?s“?%?(
????????????speed?corrWords?words?countDownTime)


????#?def?setText2(self?corrWords):
????#?????self.text2?=?“一分鐘共打對單詞數:&s個“?%corrWords

?屬性????????????大小?????日期????時間???名稱
-----------?---------??----------?-----??----
?????目錄???????????0??2019-07-04?18:32??typeGame\
?????文件????????1203??2018-12-13?15:00??typeGame\.gitignore
?????目錄???????????0??2019-07-04?18:34??typeGame\.idea\
?????文件?????????686??2019-07-04?17:24??typeGame\.idea\misc.xml
?????文件?????????268??2019-07-04?17:23??typeGame\.idea\modules.xml
?????文件?????????459??2019-07-04?17:24??typeGame\.idea\typeGame.iml
?????文件???????32151??2019-07-04?18:34??typeGame\.idea\workspace.xml
?????文件?????????130??2019-07-04?17:30??typeGame\README.md
?????目錄???????????0??2019-07-04?18:31??typeGame\__pycache__\
?????文件????????1086??2019-07-04?18:31??typeGame\__pycache__\captions.cpython-36.pyc
?????文件????????3075??2019-07-04?18:13??typeGame\__pycache__\inputarea.cpython-36.pyc
?????文件?????????937??2019-07-04?17:47??typeGame\__pycache__\textgenerator.cpython-36.pyc
?????文件?????????748??2019-07-04?18:31??typeGame\captions.py
?????目錄???????????0??2019-07-04?17:40??typeGame\files\
?????文件????????3071??2019-07-04?17:40??typeGame\files\speed.txt
?????文件????????3301??2019-07-04?18:13??typeGame\inputarea.py
?????文件??????????23??2018-12-13?15:00??typeGame\requirements.txt
?????文件????????2610??2019-07-04?18:32??typeGame\run.py
?????文件?????????610??2019-07-04?17:41??typeGame\textgenerator.py

評論

共有 條評論