你们中的任何人都可以帮助我确定我做错了什么吗?我知道这可能很简单,但我对编程和 Python 很陌生。我需要返回['*', '2', '3', '*', '5']
。相反,我在列表中获得了更多的值。
测试替换列表中的值
repl_list = [1, 2, 3, 1, 5]
str_repl_list = str(repl_list)
# print('This is the list to replace: ' + str_repl_list)
# print(type(str_repl_list[0]))
new_str_list = []`enter code here`
print(new_str_list)
for item in str_repl_list:
replacement = item.replace('1', '*')
new_str_list.append(replacement)
for index, char in enumerate(new_str_list):
print(index, char) # This is to identify what information is being taken as par of the new list
隔江千里
慕尼黑的夜晚无繁华
潇湘沐
相关分类