>>> import string
>>> word = "hello."
>>> word2 = word.replace(string.lowercase, '.')
>>> print word2
hello.
I just want all the lowercase letters to turn into full stops.
What am I doing wrong here?
|
|
|
Use a regular expression:
|
|||
|
|
|
you should use
the alternatively, you can simply iterate through the string, using a generator:
|
|||||||
|
|
Instead, you want to use the
|
|||
|
|
|
You are trying to replace the string "abc...xyz" instead of replacing every lowercase letter. You can achieve the wanted result by several ways: Regular expressions
Char by char
|
||||
|
|
|
i don't think you can use r*eplace* for a mapping like that, but you can do what you want with a simple regular expression:
|
||||
|
|