我是编程和 python 的新手,正在尝试编写一个程序来处理天文数据。我有一个巨大的文件列表,命名为 ww_12m_no0021.spc、ww_12m_no0022.spc 等。我想将所有奇数文件和偶数文件移动到两个单独的文件夹中。
import shutil
import os
for file in os.listdir("/Users/asifrasha/Desktop/python_test/input"):
if os.path.splitext(file) [1] == ".spc":
print file
shutil.copy(file, os.path.join("/Users/asifrasha/Desktop/python_test/output",file))
这实际上是将所有 spc 文件复制到不同的文件夹。我在如何只能将奇数文件(no0021、no0023……)复制到单独的文件夹中苦苦挣扎。任何帮助或建议将不胜感激!!!