我经常为我的任务运行代码,但这是我第一次在Mac上运行它,这给了我错误-
Traceback (most recent call last):
File "bt.py", line 103, in <module>
with open(filename,"a") as fout:
NameError: name 'filename' is not defined
代码是-
import time
from datetime import datetime, timedelta
import re
import zipfile
import glob, os
import string
str=""
new_name=""
new_name1=""
date_folder_name=""
flag=0
file_name=""
file_name2=""
filename=""
line2=""
lines=""
i=0
path=""
clock=""
device=""
command=""
commandName=""
data=""
#..\input\BT
inputBTFolder=os.path.join('..','input','BT')
#Extracting Zip File and Storing Date
for root, dirs, files in os.walk(inputBTFolder):
for file in files:
if '.zip' in file:
print("Processing:"+file)
file_name=file.split('.zip')[0]
file_name2=file_name.split('_')
zip=zipfile.ZipFile(os.path.join(inputBTFolder,file))
zip.extractall(os.path.join(inputBTFolder,file.split('.zip')[0]))
year='20'+file_name2[6]
month=file_name2[5]
date=file_name2[4]
Date=date+"-"+month+"-"+year
dateformat=datetime.strptime(Date,'%d-%m-%Y')
clock=dateformat.strftime("%Y%m%d")+"000000"
for root, dirs, files in os.walk(os.path.join(inputBTFolder,file_name)):
for file in files:
f=open(os.path.join(root,file), "r")
for line in f:
crInfo='CR INFO'
#i=0
if 'Connecting to ' in line :
deviceName=line.split(" ")
device=deviceName[2]
print device
path=os.path.join('..','output','British-Telecom','cli',clock,device)
if os.path.exists(path):
continue
else :
os.makedirs(path)
#Code for each device starts from here -
if 'executing' in line:
commandName=line.split("'")
command=commandName[1]
if ("/" or "*" or ":" or "%" or "-" or "|" or " " in command) :
if("|" in command):
commandname1=command.split("|")
command=commandname1[0]
command=command.replace("/", "_")
command=command.replace("*", "_")
command=command.replace(":", "_")
command=command.replace("%", "_")
command=command.replace("-", "_")
command=command.replace(" ", "_")
if("__" in command):
command=command.replace("__", "_")
if(len(command)>0 and command[-1]=='_'):
command=command[:-1]
filename=path+"/"+command+".txt"
open(filename,'a').close()
if crInfo not in line:
with open(filename,"a") as fout:
fout.write(line)
请问我在Mac上遇到的问题是什么以及如何解决?
答案 0 :(得分:0)
我只是在iMac上尝试过您的文件,但文件没有运行完毕。它在第58行给出了一条错误消息,该错误消息是语句print device
。 Python 3及更高版本要求print语句带有括号,因此您的行应为print (device)
。在Mac上使用python3时,您在其上运行的另一台计算机可能使用了python 2。我在打印语句中添加了括号,您的代码运行完毕。因此,也许您想修复打印语句,看看是否有帮助。
我在VScode中也从终端运行了它。在两种情况下,它都运行完成,没有错误消息。据我所知,根本没有任何输出。我想这个脚本可以在另一个我没有的文件上运行。因此,我无法完成任务。但是,我没有收到任何错误消息,因此也许可以告诉您一些信息。