我是新手transcrypt
。我创建了一个测试python文件,test.py
def test_def(a: list):
for i in range(len(a)):
print(i)
xx = [2, 3, 4]
test_def(xx)
我有python 3.9。如果我运行 python 文件,它会按预期运行和打印。
运行 transcrypt 会出现以下错误
> python -m transcrypt -b -m -n .\test.py
Error while compiling (offending file last):
File 'test', line 2, namely:
Error while compiling (offending file last):
File 'test', line 2, namely:
Aborted
我不确定它期望什么以及为什么会出现错误,任何帮助将不胜感激。