Найти - Пользователи
Полная версия: проблемы с replace()
Начало » Python для новичков » проблемы с replace()
1
inlanger
В общем, нужно мне заменить, для примера, все русские буквы “ж” на “lalala”. Делаю так:
textToWork = u"авпж"
textToWork.replace(u'ж', 'lalala')
print textToWork
и выводит он авпж, то есть, замена не работает…
crchemist
Help on built-in function replace:

replace(...)
S.replace (old, new[, count]) -> string

Return a copy of string S with all occurrences of substring
old replaced by new. If the optional argument count is
given, only the first count occurrences are replaced.
тра так:
textToWork = u"авпж"
result = textToWork.replace(u'ж', 'lalala')
print result
inlanger
Спасибо, работает!
This is a "lo-fi" version of our main content. To view the full version with more information, formatting and images, please click here.
Powered by DjangoBB