编写一个程序,输入两个英文句子。每个英文句子的单词中间用空格隔开。输出两个句子最长的公共单词。
编写一个程序,输入两个英文句子。每个英文句子的单词中间用空格隔开。输出两个句子最长的公共单词。区分大小写。例如:Thereisatreebehindthehouse.Ab...
编写一个程序,输入两个英文句子。每个英文句子的单词中间用空格隔开。输出两个句子最长的公共单词。区分大小写。例如:There is a tree behind the house.
A big tree is cut down there.应输出tree,而不是there. 太难了,怎么写?谢谢解答(╥﹏╥) 展开
A big tree is cut down there.应输出tree,而不是there. 太难了,怎么写?谢谢解答(╥﹏╥) 展开
1个回答
展开全部
str1 = 'There is a tree behind the house.'[:-1].split()
str2 = 'A big tree is cut down there.'[:-1].split()
n = 0
togeter = []
for i in str1:
if i in str2:
togeter.append(i)
for max_word in togeter:
if len(max_word) < n:
n = len(max_word)
max_word= n
print max_word
str2 = 'A big tree is cut down there.'[:-1].split()
n = 0
togeter = []
for i in str1:
if i in str2:
togeter.append(i)
for max_word in togeter:
if len(max_word) < n:
n = len(max_word)
max_word= n
print max_word
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询