#需要的一小段文本 txt = "人生得意须尽欢,莫使金樽空对月。天生我才必有用,千金散尽还复来。"#对文本进行分割,转换成列表形式 def txt_split(txt):li = [",","。"]for i in li:#最关键的是下面这句,txt的名字要一致,将replace返回的副本重新赋值给TXTtxt = txt.replace(i,"\n")txt = txt.split("\n")return txt #打印列表的每一个元素 def txt_print(new_txt):for i in new_txt:#对每一个元素的输出进行居中设置print(i.center(100, " "))print()new_txt = txt_split(txt) txt_print(new_txt)
小知识点:关于str
无论是 str.split ,str.replace, "".join(str) 返回的都是副本,并没有对原变量进行操作,不同于list.append()