标题: 被提示can only concatenate list (not "str") to list 求解答 [打印本页] 作者: incipient 时间: 2017-10-6 14:37 标题: 被提示can only concatenate list (not "str") to list 求解答 本帖最后由 incipient 于 2017-10-6 14:40 编辑
代码如下:
import os
import time
source = ["E:\\Python learning\__pycache__"]
target_dir = ["F:\\Beckup"]
target = target_dir + os.sep + time.strftime("%Y%m%d%H%M%S") + ".zip"
if not os.path.exists(target_dir):
os.mkdir(target_dir)