gpt4 book ai didi

Python比较两个字符串列表的相似性

转载 作者:太空狗 更新时间:2023-10-30 03:02:29 24 4
gpt4 key购买 nike

我是 Python 的新手,但我认为制作一个程序来对我所有的下载进行排序会很有趣,但我在使用它时遇到了一些麻烦。如果我的目的地只有一个单词,它就可以完美运行,但如果目的地有两个或更多单词,这就是它出错的地方,程序会陷入循环。有没有人比我更擅长比较列表

>>>for i in dstdir:
>>> print i.split()

['CALIFORNICATION']
['THAT', "'70S", 'SHOW']
['THE', 'BIG', 'BANG', 'THEORY']
['THE', 'OFFICE']
['DEXTER']
['SPAWN']
['SCRUBS']
['BETTER', 'OF', 'TED']

>>>for i in dstdir:
>>> print i.split()
['Brooklyn.Nine-Nine.S01E16.REAL.HDTV.x264-EXCELLENCE.mp4']
['Revolution', '2012', 'S02E12', 'HDTV', 'x264-LOL[ettv]']]
['Inequality', 'for', 'All', '(2013)', '[1080p]']

这是列表输出的示例。

我有一个目标目录,其中只有文件夹和一个下载目录。我想制作一个程序来自动查看源文件名,然后再查看目标文件名。如果目标名称在源名称中,那么我可以继续并复制下载的文件,以便在我的收藏中对其进行排序。

destination = '/media/mediacenter/SAMSUNG/SERIES/'
source = '/home/mediacenter/Downloads/'
dstdir = os.listdir(destination)
srcdir = os.listdir(source)

for i in srcdir:
source = list(i.split())
for j in dstdir:
count = 0
succes = 0
destination = list(j.split())
if len(destination) == 1:
while (count < len(source)):
if destination[0].upper() == source[count].upper():
print 'succes ', destination, ' ', source
count = count + 1
elif len(destination) == 2:
while(count < len(source)):
if (destination[0].upper() == source[count].upper()):
succes = succes + 1
count = len(source)
count = 0
while(count < len(source)):
if (destination[1].upper() == source[count].upper()):
succes = succes + 1
count = len(source)
count = 0
if succes == 2:
print 'succes ', destination, ' ', source

现在我很高兴只有“成功”作为输出;我会弄清楚如何复制文件,因为在不久的将来这对我来说将是一个完全不同的问题

最佳答案

也许是这样的。检查目标文件夹中的每个单词是否存在于文件名中

dstdir = ['The Big Bang Theory', 'Dexter', 'Spawn' ]

srcdir = ['the.big.bang.theory s1e1', 'the.big.bang.theory s1e2', 'dexter s2e01']

for source in srcdir:
for destination in dstdir:
destinationWords = destination.split()

if all(word.lower() in source.lower() for word in destinationWords):
print 'succes ', destination, ' ', source

输出:

succes  The Big Bang Theory   the.big.bang.theory s1e1
succes The Big Bang Theory the.big.bang.theory s1e2
succes Dexter dexter s2e01

关于Python比较两个字符串列表的相似性,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/21799099/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com