簡単な1時間のゲームを作成していて、途中でTypeError: 'builtin_function_or_method' object is not subscriptable
エラーが発生しました。なぜこれが起こったのか分かりませんが、time.sleep[x]
関数の使用に問題があるようです。私の完全なエラーとコードは以下のとおりです。
コード:
import time
import random
def intro():
print("You are playing a game...")
time.sleep[3]
print("of chance.")
time.sleep[1.5]
print("Enter [1] to continue.")
introChoice=''
while introChoice not in ['1']:
introChoice=input("> ")
if introChoice=="1":
tutorial()
エラー:
You are playing a game...
Traceback (most recent call last):
File "/Users/jacob/Documents/a game of chance.py", line 126, in <module>
intro()
File "/Users/jacob/Documents/a game of chance.py", line 9, in intro
time.sleep[3]
TypeError: 'builtin_function_or_method' object is not subscriptable
どんな助けでもありがたいです、そして私は必要ならばもっと多くの情報を与えるつもりです。