0
我試圖用this我的計劃,以獲得一個mp3文件中不區分大小寫,而且我這個代碼:Python中獲得文件,無論上限或下限
import glob
import fnmatch, re
def custom_song(name):
for song in re.compile(fnmatch.translate(glob.glob("../music/*"+name+"*.mp3")), re.IGNORECASE):
print (song)
custom_song("hello")
但是,當我執行腳本我收到以下錯誤:
File "music.py", line 4, in custom_song
for song in re.compile(fnmatch.translate(glob.glob("../music/*"+name+"*.mp3")), re.IGNORECASE):
TypeError: '_sre.SRE_Pattern' object is not iterable
我該如何解決?
哇,非常感謝,它的作品就像一個魅力! – Javierd98