假设我有如下列表
list_fields = ['Full-Time',
'Options:',
'Express your interest',
'Email this to a friend',
'More information about this job:',
'Overview:',
'A',
'Parasite',
'position is cool',
'Are you a LEADER?',
'For sure there',
'Hello doing?',
'If so you will EXCEL.',
'Bring your skills',
'programs and procedures']
我想做的是收集所有字符串之后overview
,我的意思是需要忽略字符串之前的overview
字符串。之前和之后可能有很多字符串overview
,但是只想在overview
列表之后收集所有字符串,并希望通过使用类似对不起的东西将它们作为单个字符串,''.join([list_fields])
如果我一次又一次地使用单词,谁能告诉我如何做这个
Edited Code:
- 我们只能从“概述:”之后到“带上你的技能”之前获取吗?
提前致谢