質問をすることでしか得られない、回答やアドバイスがある。

15分調べてもわからないことは、質問しよう!

新規登録して質問してみよう
ただいま回答率
85.35%
Python 2.7

Python 2.7は2.xシリーズでは最後のメジャーバージョンです。Python3.1にある機能の多くが含まれています。

Python 3.x

Python 3はPythonプログラミング言語の最新バージョンであり、2008年12月3日にリリースされました。

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

Q&A

2回答

490閲覧

Python:name 'file_path' is not definedというエラーが解決できません。

yyyuuyyy

総合スコア0

Python 2.7

Python 2.7は2.xシリーズでは最後のメジャーバージョンです。Python3.1にある機能の多くが含まれています。

Python 3.x

Python 3はPythonプログラミング言語の最新バージョンであり、2008年12月3日にリリースされました。

Python

Pythonは、コードの読みやすさが特徴的なプログラミング言語の1つです。 強い型付け、動的型付けに対応しており、後方互換性がないバージョン2系とバージョン3系が使用されています。 商用製品の開発にも無料で使用でき、OSだけでなく仮想環境にも対応。Unicodeによる文字列操作をサポートしているため、日本語処理も標準で可能です。

0グッド

1クリップ

投稿2024/08/27 08:42

編集2024/08/27 08:43

実現したいこと

麻雀サイトの天鳳の牌譜を学習で使える形にしようと考えています。

発生している問題・分からないこと

ディレクトリ内のすべてのファイルを処理する際に、name 'file_path' is not definedというエラーが出てしまい、解決できません。
2個目にコードの全体像を載せておきます。

エラーメッセージ

error

1Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_1.txt 2Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_1.txt: name 'file_path' is not defined 3Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_10.txt 4Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_10.txt: name 'file_path' is not defined 5Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_100.txt 6Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_100.txt: name 'file_path' is not defined 7Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_11.txt 8Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_11.txt: name 'file_path' is not defined 9Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_12.txt 10Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_12.txt: name 'file_path' is not defined 11Processing file: C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_13.txt 12Unexpected error processing file C:\Users\g2381454\Downloads\2022\test\scc20220101_updated_urls_log_13.txt: name 'file_path' is not defined

該当のソースコード

Python

1def process_text_files_manually(directory): 2 all_game_data = [] 3 for filename in os.listdir(directory): # ディレクトリ内のすべてのファイルを処理 4 file_path = os.path.join(directory, filename) # file_pathを定義 5 print(f"Processing file: {file_path}") 6 try: 7 with open(file_path, 'r', encoding='utf-8') as file: 8 file_content = file.read() 9 game_data = parse_mjlog_manually(file_content) 10 if game_data: 11 all_game_data.append((file_path, game_data)) 12 else: 13 print(f"Failed to parse: {file_path}") 14 gc.collect() 15 except Exception as e: 16 print(f"Unexpected error in file {file_path}: {e}") # エラーが発生した場合、file_pathを含めて出力 17 return all_game_data

Python

1import os 2import re 3import numpy as np 4import gc 5 6def safe_int_conversion(value, default=-1): 7#省略 8 9def tile_number_to_index(tile_number): 10 #省略 11 12def encode_hand_tiles(hand_tiles): 13#省略 14 15def encode_discards_and_melds(discards, melds): 16#省略 17 18def score_to_one_hot(score): 19#省略 20 21def encode_scores(player_scores): 22#省略 23 24def encode_dealer(dealer_index): 25#省略 26 27def encode_round(round_index): 28#省略 29 30def encode_dora(dora_tile): 31#省略 32 33def parse_mentsu_code(mentsu_code): 34#省略 35 36def parse_mjlog_manually(file_content): 37 38def process_text_files_manually(directory): 39#省略 40 41def prepare_data_append_to_csv(all_game_data, save_directory): 42#省略 43 44directory_path = r'C:\Users\g2381454\Downloads\2022\test' 45 46all_game_data = process_text_files_manually(directory_path) 47 48save_directory = r'C:\Users\g2381454\Documents\jupyter' 49 50X, y = prepare_data_append_to_csv(all_game_data, save_directory) 51 52print("Number of samples (X):", len(X)) 53print("Number of labels (y):", len(y)) 54if len(X) > 0: 55 print("Sample X[0]:", X[0]) 56if len(y) > 0: 57 print("Sample y[0]:", y[0]) 58

試したこと・調べたこと

  • teratailやGoogle等で検索した
  • ソースコードを自分なりに変更した
  • 知人に聞いた
  • その他
上記の詳細・結果

同様の質問が見つかりませんでした。

補足

特にありません。

気になる質問をクリップする

クリップした質問は、後からいつでもMYページで確認できます。

またクリップした質問に回答があった際、通知やメールを受け取ることができます。

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

TakaiY

2024/08/27 09:04

エラーが発生したのが提示の場所だと判断したのはなぜですか? 提示のコードでは例外発生時の出力は > print(f"Unexpected error in file {file_path}: {e}") ですが、エラーメッセージでは > Unexpected error processing file C:\Users\g2381 (略) となっており、文言が異なります。
otn

2024/08/27 10:21 編集

try/exceptでエラー情報を握りつぶして、エラーの詳細が不明になっていますのでデバッグ中はそう言うのはやめましょう。 try行 と excpt節 を除去して実行しましょう。
yyyuuyyy

2024/08/28 04:04

コメントありがとうございます。大変申し訳ありません、以後改善します。
guest

回答2

0

Windows 11、Python 3.12.4で確認しました。

提示されたprocess_text_files_manually関数には、2個、問題点があります。

  • 3行目、指定したフォルダーの直下しか見ていない(再帰的に見ていない)
  • 7行目、上記でファイルもフォルダーも抽出されるため、フォルダーもopenしようとしてエラーになる

よって、import globを追加後、3行目を以下のように書き換えます。
これで再帰的にファイルのみ取り出します。

for filename in [filename for filename in glob.glob(directory + '/**', recursive = True) if os.path.isfile(filename)]:

ただし、この方法だと「.」で始まるファイル名は取れない点に注意してください。
(想定しているファイルに、そういうのが無ければ問題無いです)

投稿2024/08/27 17:49

hiroki-o

総合スコア1117

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

yyyuuyyy

2024/08/28 04:02

ありがとうございます。解決しました。
hiroki-o

2024/08/28 10:56

私の回答で解決したのなら、ベストアンサーに選んで、解決済みにしてください。 そうすると、質問者さん自身にもスコアが付きます。
guest

0

name 'file_path' is not defined

file_path というキーワードが定義されていない、とおっしゃってますが、それはどこで定義されてるのかをチェックしましょう。

投稿2024/08/27 12:58

y_waiwai

総合スコア88049

バッドをするには、ログインかつ

こちらの条件を満たす必要があります。

yyyuuyyy

2024/08/28 04:02

ありがとうございます。確認してみます!
guest

あなたの回答

tips

太字

斜体

打ち消し線

見出し

引用テキストの挿入

コードの挿入

リンクの挿入

リストの挿入

番号リストの挿入

表の挿入

水平線の挿入

プレビュー

まだベストアンサーが選ばれていません

会員登録して回答してみよう

アカウントをお持ちの方は

15分調べてもわからないことは
teratailで質問しよう!

ただいまの回答率
85.35%

質問をまとめることで
思考を整理して素早く解決

テンプレート機能で
簡単に質問をまとめる

質問する

関連した質問