طريقة replace
replace(old_value, new_value)
استبدل النص.
def replace(self, old_value, new_value):
...
معامل | يكتب | وصف |
---|---|---|
old_value | str | النص القديم. |
new_value | str | النص الجديد. |
replace(index, count, text)
استبدل النص.
def replace(self, index, count, text):
...
معامل | يكتب | وصف |
---|---|---|
index | int | فهرس البداية. |
count | int | عدد الشخصيات. |
text | str | النص. |