Fre*_*d S 1 python string list
简单地添加字符串和字符串列表会产生错误cannot concatenate 'str' and 'list' objects.是否有更优雅的方式来执行以下操作(例如,没有循环)?
list_of_strings = ["Hello", "World"]
string_to_add = "Foo"
for item, string in enumerate(list_of_strings):
list_of_strings[item] = string_to_add + string
# list_of_strings is now ["FooHello", "FooWorld"]
Run Code Online (Sandbox Code Playgroud)
使用理解:
list_of_strings = [s + string_to_add for s in list_of_strings]
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
68 次 |
| 最近记录: |