我正在研究一些代码,这些代码应在满足某些要求时更改字符串以创建新行。但是,由于我将字符串更改为列表,因此最终将其打印为列表,并且我不知道如何将列表转换为字符串或通过将其保留为字符串来分析字符串。此外,如果有人能解释为什么添加“ \ n”实际上没有创建换行符,我也将不胜感激。
我尝试过str(variable)
将列表转换为字符串,但是这似乎不起作用。此外,我尝试更改附加方法,以查看是否确实会插入换行符。 variable.append
,+=
,但这些似乎都不起作用。我是Python和编程的新手,正在苦苦挣扎。
sentence= "Hello. My name is George... Michael! David Browns."
def sentence_splitter(target_sentence):
target_sentence = list(target_sentence)
for character in range(len(target_sentence)):
if target_sentence[character:character+2] == list(". ") or target_sentence[character:character+2] == list("! "):
target_sentence[character:character+2] += list("\n")
print(str(target_sentence))
sentence_splitter(sentence)
当前结果:
['H', 'e', 'l', 'l', 'o', '.', ' ', '\n', 'M', 'y', ' ', 'n', 'a', 'm', 'e', ' ', 'i', 's', ' ', 'G', 'e', 'o', 'r', 'g', 'e', '.', '.', '.', ' ', '\n', 'M', 'i', 'c', 'h', 'a', 'e', 'l', '!', ' ', '\n', 'D', 'a', 'v', 'i', 'd', ' ', 'B', 'r', 'o', 'w', 'n', 's', '.']
预期结果:
Hello.
My name is George...
Michael!
David Browns.
答案 0 :(得分:0)
sent = ""
for i in sentence.split(" "):
sent = sent + " " + i
if i[-1] in ['.', '!']:
sent = sent + "\n"
print(sent)
输出:
Hello.
My name is George...
Michael!
David Browns.
答案 1 :(得分:0)
target_sentence
是一个列表。使用print(''.join(target_sentence))
而非print(str(target_sentence))
将列表的所有元素组合成一个字符串。
输出:
Hello.
My name is George...
Michael!
David Browns.