文字列を指定して、指定した位置の文字を削除します。
例
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
コメントを残す