wangyanren 发表于 2022-8-30 10:15:50

求个大佬详细解题,本人思路理解不是很清晰

给定一个字符串 text 和字符串列表 words,返回 words 中每个单词在 text 中的位置(要求最终的位置从小到大进行排序)

text = input("请输入text的内容:")
words = input("请输入words的内容:")
words = words.split()
   
result = []
for each in words:
    temp = text.find(each)
    while temp != -1:
      result.append()
      temp = text.find(each, temp+1)
   
print(sorted(result))

wp231957 发表于 2022-8-30 11:34:22

哪里或哪句代码不清楚??

wangyanren 发表于 2022-8-30 14:17:17

wp231957 发表于 2022-8-30 11:34
哪里或哪句代码不清楚??

for each in words:
    temp = text.find(each)
    while temp != -1:
      result.append()
      temp = text.find(each, temp+1)   

这些语句不清晰

wp231957 发表于 2022-8-30 14:24:57

wangyanren 发表于 2022-8-30 14:17
for each in words:
    temp = text.find(each)
    while temp != -1:


除了find 感觉稍稍有些需要关注,其他语句没啥吧
>>> s="thisisabookthisisa book is"
>>> s.find("is")
2
>>> s.find("is",3)
4
>>> s.find("is",5)
13
>>> s
''
>>> s
'is'
>>> s
'is'
>>> s
'is'

wyh551202 发表于 2022-8-30 16:00:10

题目意思的不是很确定,问下楼主,
例子:
字符串text = 'abc'
字符串列表 words = ['q','b','c','a','d']
是要获得 'abc' 在words中的位置
是这个意思吗?
页: [1]
查看完整版本: 求个大佬详细解题,本人思路理解不是很清晰