Delete text.py

test file removed
This commit is contained in:
jhite1234 2025-02-07 19:57:36 -05:00 committed by GitHub
parent 6a8811dca9
commit bcec01de88
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

10
text.py
View File

@ -1,10 +0,0 @@
import os
print("Current Working Directory:", os.getcwd())
file_path = "./games/lost_forest.csv"
if os.path.exists(file_path):
print("✅ File exists! Python can detect it.")
else:
print("❌ File does NOT exist according to Python.")