- replace()メソッドを使用する方法: replace()メソッドを使用して、文字列内のコンマを空文字列に置き換えることができます。
string_with_commas = "1,000,000"
string_without_commas = string_with_commas.replace(",", "")
print(string_without_commas)
出力:
1000000
- join()とsplit()メソッドを使用する方法: split()メソッドを使用して文字列をコンマで分割し、join()メソッドを使用して分割された文字列を結合することができます。
string_with_commas = "1,000,000"
string_list = string_with_commas.split(",")
string_without_commas = "".join(string_list)
print(string_without_commas)
出力:
1000000
- 正規表現を使用する方法: reモジュールを使用して正規表現を利用することもできます。
import re
string_with_commas = "1,000,000"
string_without_commas = re.sub(",", "", string_with_commas)
print(string_without_commas)
出力:
1000000
これらの方法を使用すると、Pythonで文字列からコンマを削除することができます。ご参考までにどうぞ。