我有一系列的体力,其中包括“firstname.lastname”号:
customers = ["aaa.bbb", "ccc.ddd", "www.uuu", "iii.oooo", ...]
Now, I would like to transfer each element s string format in the array by removing the "." and use space instead. That s I want the array to be:
customers = ["aaa bbb", "ccc ddd", "www uuu", "iii oooo", ...]
这样做的最有效方式是什么?
---------------- MORE -------------------
https/a>。