メインと同じディレクトリにファイルがあるにもかかわらず何らかの理由で、このようなファイルエラーが発生しています。どんな助けもありがとうございます。このようなファイルやディレクトリはありませんか?
import time
def firstQues():
print('"TT(Announcing): HONING IN FROM SU CASA CUIDAD, (Their hometown)"')
time.sleep(3)
print('"VEN EL UN.....(Comes the one.....)"')
time.sleep(2)
print('"EL SOLO......(The ONLY.....)"')
time.sleep(3)
print('"Campeón NOVATO (NEWBIE CHAMP)"')
print()
text_file = open("Questions1.txt", "r")
wholefile = text_file.readline()
for wholefile in open("Questions1.txt"):
print(wholefile)
return wholefile
return text_file
def main():
firstQues()
text_file = open("Questions1.txt", "r")
main()
最初に閉じることなく同じファイルを3回開くことはできません。 2つのreturn文を持つことには意味がなく、最初のものだけが動作します。 –
"Questions1.txt"以上のpythonスクリプトが同じフォルダにあるかどうか確認してください –
同じフォルダにあります。 –