当我偶然发现一些奇怪的东西时,我正在用Python 3.6编写一种编程语言。使用以下代码,我得到一个错误,并显示了一些有趣的输出。
import sys
import tkinter as tk
import datetime
class _Viper:
def __init__(self):
pass
def error(self, err, title="ERROR"):
root = tk.Tk()
root.title(title)
root["bg"] = "#d56916"
label = tk.Label(root, text=err)
labelt = tk.Label(root, text=str(datetime.datetime.now()))
label.config(bg="#e67a27")
labelt.config(bg="#d56916")
label.grid()
labelt.grid()
root.mainloop()
def grabdata(self, line):
raw = line.split("(")
raw[1] = raw[1][:-1]
print(type(raw[1]))
raw[1] = raw[1].split()
#raw[1] = raw[1].split('"')
return {
"keyword" : raw[0],
"params" : raw[1].split()
}
Viper = _Viper() #For PyLint
"""
try:
sys.argv[1]
execute = True
except:
execute = False
Viper.error("Error `Viper.FileNotProvidedError` @ interpreter.py. Do not directly run this file. Run it with `Viper0.0.0a C:\\path\\to\\file`, or associate viper to Viper0.0.0a.bat.")
"""
sys.argv.append("C:\\viper\\interpreter\\testie.vi")
execute = True
if execute:
extension = str(sys.argv[1][-2]+sys.argv[1][-1])
if extension.upper() == "VI":
with open("C:\\viper\\interpreter\\testie.vi", "r") as src:
lines = src.readlines()
for line in lines:
Viper.grabdata(line)
else:
Viper.error("Error `Viper.ExtensionNotViperError` @ interpreter.py. Please run this with a file with the \"vi\" extension.")
您看到我所看到的吗? <class 'str'>
是raw[1]
的类。那里空无一物。但是当我提到它时,它说这是一个列表!
有人可以告诉我这是怎么回事吗?
我忘了添加毒蛇文件。
setvar("hmm", "No")
我将解释我的问题。它将字符串视为列表。
答案 0 :(得分:1)
打印类型后的行:
raw[1] = raw[1].split()
这会将它变成一个列表。当您稍后使用raw[1]
调用"params" : raw[1].split()
时,它不再是字符串,而是列表。因此,这意味着raw[1]
被拆分了两次。如果您打算将raw[1]
中的参数作为列表返回,则只需删除行raw[1] = raw[1].split()
。