'Replace a name in a string in Python
I'm working on a assignment and I need to replace Alice with my name. Here is the program,
for i in range(10):
print(i)
print(split_alice[i]).replace_alice("Alice","Alex")
So I just need help to make the program read the i
in range part with my name instead of Alice.
Thanks.
Solution 1:[1]
Just use replace()
method on strings..
Like this
>>> mystr = 'My name is Alice'
>>> mystr.replace('Alice','Alex')
'My name is Alex'
Also, if you have any doubts about anything, you should use help()
.
Like in your case:
>>> help(type(mystr))
Help on class str in module __builtin__:
class str(basestring)
| str(object) -> string
...
...
| 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.
|
...
...
| ----------------------------------------------------------------------
| Data and other attributes defined here:
|
| __new__ = <built-in method __new__ of type object>
| T.__new__(S, ...) -> a new object with type S, a subtype of T
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
Solution | Source |
---|---|
Solution 1 | pradyunsg |