首页
学习
活动
专区
工具
TVP
发布
社区首页 >问答首页 >Python中的For循环没有正确地将列表划分为子集

Python中的For循环没有正确地将列表划分为子集
EN

Stack Overflow用户
提问于 2019-06-27 01:37:28
回答 4查看 64关注 0票数 1

Python新手如此赤裸裸。

我正在尝试找到一种方法来确定一个包含字符串和变量的列表是否是另一个列表的子集。到目前为止,请查看下面的代码和结果

y = ['test_sam_20190624.csv', 'test_phil_20190624.csv', 'test_bill_20190624.csv', 'test_jess_20190624.csv', 'test_issy_20190624.csv', 'test_clinton_20190624.csv']
x = ['sam', 'jack', 'bill', 'rodry', 'clinton']
print('\nFile list is ')
print(*y, sep="\n")
print('\nNeeded names are ')
print(*x, sep="\n")

datetoday = '20190624'

incl = [p for p in x if 'test'+p+datetoday+'.csv' in y]
not_incl = [p for p in x if 'test'+p+datetoday+'.csv' not in y]

print("\n Included")
print(*incl, sep="\m")
print("\n Not included")
print(*not_incl, sep="\n")

和下面给出的输出:

File list is 
test_sam_20190624.csv
test_phil_20190624.csv
test_bill_20190624.csv
test_jess_20190624.csv
test_issy_20190624.csv
test_clinton__20190624.csv

Needed names are 
sam
jack
bill
rodry
clinton

 Included


 Not included
sam
jack
bill
rodry
clinton

Process finished with exit code 0

但我肯定会期望incl = ['sam' 'bill 'clinton']作为输出?输出为:

 Included
sam
bill
clinton


 Not included
jack
rodry

我哪里错了?也许在字符串的连接中?

EN
页面原文内容由Stack Overflow提供。腾讯云小微IT领域专用引擎提供翻译支持
原文链接:

https://stackoverflow.com/questions/56778342

复制
相关文章

相似问题

领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档