前提・実現したいこと
スクリーンを写したいが、エラーが出るてしまい、うまくいかないです。
発生している問題・エラーメッセージ
AttributeError: module 'pygame' has no attribute 'init'
該当のソースコード
python
1import pygame 2import sys 3 4WHITE=(255,255,255) 5BLACK=(0,0,0) 6 7def main(): 8 pygame.init() 9 pygame.display.set_caption("初めての初めてのPygame") 10 screen=ptgame.display.set_mode((800,600)) 11 clock=pygame.time.clock() 12 font=pygame.font.Font(None,80) 13 tmr=0 14 15 while True: 16 tmr=tmr+1 17 for event in pygame.event.get(): 18 if event.type==Pygame.QUIT: 19 pygame.quit() 20 sys.exit() 21 22 txt=font.render(str(tmr),True,WHITE) 23 screen.fill(BLACK) 24 screen.blit(txt,[300,200]) 25 pygame.display.update() 26 clock.tick(10) 27 28if __name__=='__main__': 29 main()
試したこと
ネットで調べたがうまくいかなかった。
補足情報(FW/ツールのバージョンなど)
初心者なので足りないところがあったら言ってください
回答1件
あなたの回答
tips
プレビュー