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