以下程序的目的是将 4 个字符中的单词从 转换"This"
为"T***"
,我已经完成了使该列表和 len 工作的困难部分。
问题是程序逐行输出答案,我想知道是否可以将输出存储回列表并将其作为一个完整的句子打印出来?
谢谢。
#Define function to translate imported list information
def translate(i):
if len(i) == 4: #Execute if the length of the text is 4
translate = i[0] + "***" #Return ***
return (translate)
else:
return (i) #Return original value
#User input sentense for translation
orgSent = input("Pleae enter a sentence:")
orgSent = orgSent.split (" ")
#Print lines
for i in orgSent:
print(translate(i))