我在我的python程序中遇到問題。在這個程序中,用戶輸入一個字符串,然後程序調用一個函數從unicode的信到最近的ASCII符號轉換(例如秒 - > S 0 - > 0等),但我得到 TypeError: 'str' object does not support item assignment
TypeError:'str'對象不支持項目分配
代碼:
__author__ = 'neo'
ceviri = {
'ş':'s','Ş':'S',
'ğ':'g','Ğ':'G',
'ı':'i','İ':'I',
'ü':'u','Ü':'U',
'ö':'o','Ö':'O'
}
def karakterDegistir(x):
p = x[:]
y = sorted(ceviri.keys())
u = 0
while u < len(y):
if p[u] in y:
p[u] = ceviri[p[u]]
u = u + 1
return p
print(karakterDegistir('şeker'))
Python不允許你修改一個字符串。你需要用翻譯建立一個新的字符串,並返回它。 – Barmar
可能的重複[如何在Python中修改字符串中的單個字符?](http://stackoverflow.com/questions/3861026/how-do-i-modify-a-single-character-in-a -string-in-python) –