スマホでpydroidというアプリを使っています。
タイマーを作ろうとして音を付けようとしている所です。
python
1import time 2import pygame 3def countdown(): 4 global time_h 5 global time_m 6 global time_s 7 8 time_s = time_s - 1 9 if time_s <= 0 and time_m >0: 10 time_s = 60 11 time_m = time_m - 1 12 if time_m <= 0 and time_h > 0: 13 time_m = 60 14 time_h =time_h -1 15 print('残り時間は' + str(time_h) + '時間' + str(time_m) + '分' + str(time_s) + '秒です') 16 17 18 19print('時間') 20time_h =int(input()) 21print('分') 22time_m =int(input()) 23print('秒') 24time_s =int(input()) 25while time_h != 0 or time_m != 0 or time_s != 0: 26 time.sleep(1) 27 countdown()
これを実行すると
pygame 2.0.0.dev8 (SDL 2.0.12, python 3.8.3) Hello from the pygame community. https://www.pygame.org/contribute.html 時間 Traceback (most recent call last): File "/storage/emulated/0/Android/data/python-save/タイマー.py", line 20, in <module> time_h =int(input()) EOFError: EOF when reading a line
というエラーが出ます。
2行目の
import pygame
を消すとエラーがなくなるのを確認しています。
また、PCのvscordではエラーが出ませんでした。
スマホで実行出来るようにしたいと思っており、最終的には音が出るようにしたいと思っています。
回答2件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。
2021/05/27 23:57