Python 文字列内の指定された位置の文字を削除する

文字列を指定して、指定した位置の文字を削除します。

test_str = "Ceodata"
  
# 元の文字列を出力する
print ("元の文字列 : " + test_str) 
  
# 3番目の文字nを削除する
new_str = "" 
  
for i in range(0, len(test_str)): 
    if i != 2: 
        new_str = new_str + test_str[i] 

print ("文字列が削除された後 : " + new_str) 

上記のコードを実行すると、結果は次となります。

元の文字列 : Ceodata
文字列が削除された後 : Cedata
Share

コメントを残す

メールアドレスが公開されることはありません。 が付いている欄は必須項目です