在 Python 中替换字符串中的名称

问题描述:

我正在处理一项任务,我需要用我的名字替换 Alice.这是程序,

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")

所以我只需要帮助让程序使用我的名字而不是 Alice 读取范围部分的 i.

So I just need help to make the program read the i in range part with my name instead of Alice.

谢谢.

只需在字符串上使用 replace() 方法..
像这样

Just use replace() method on strings..
Like this

>>> mystr = 'My name is Alice'
>>> mystr.replace('Alice','Alex')
'My name is Alex'

另外,如果你有任何疑问,你应该使用help().
就像你的情况:

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