Pythonでの文字列の変換方法


  1. 大文字と小文字の変換: Pythonでは、文字列を大文字または小文字に変換する方法があります。以下のコード例を参考にしてください。

    text = "Hello, World!"
    upper_text = text.upper()  # 全ての文字を大文字に変換
    lower_text = text.lower()  # 全ての文字を小文字に変換
    print(upper_text)  # 出力: HELLO, WORLD!
    print(lower_text)  # 出力: hello, world!
  2. 文字列の置換: 特定の文字列を別の文字列に置換する方法もあります。以下のコード例を参考にしてください。

    text = "I like cats."
    new_text = text.replace("cats", "dogs")  # "cats"を"dogs"に置換
    print(new_text)  # 出力: I like dogs.
  3. 文字列の分割と結合: 文字列を特定の区切り文字で分割したり、複数の文字列を結合したりすることもできます。以下のコード例を参考にしてください。

    text = "apple,orange,banana"
    split_text = text.split(",")  # カンマで文字列を分割し、リストに格納
    print(split_text)  # 出力: ['apple', 'orange', 'banana']
    fruits = ["apple", "orange", "banana"]
    joined_text = "-".join(fruits)  # ハイフンでリストの要素を結合
    print(joined_text)  # 出力: apple-orange-banana

これらはPythonで文字列を変換するための一部の方法とコード例です。他にもさまざまな操作や変換方法がありますので、興味があればさらに学習してみてください。