Pythonでカンマ数値(文字列)を数値に変換する コメントを残す “1,234”みたいなカンマ数値文字列を数値に変換する replaceでカンマを取り除いてintに入れるだけ >>> str = “1,234” >>> int(str.replace(‘,’, ”)) 1234