Traceback (most recent call last): File "D:\tokamaka\实验集\Python\SVM低数据兼测试版本\Test.py", line 3, in <module> is_disrupt = Reader.query(1051501, 'IsDisrupt') TypeError: Reader.query() missing 1 required positional argument: 'tag'
时间: 2024-03-18 09:44:21 浏览: 87
python-unit-test-tool-comparison:比较Python unittest,nose和py.test
这个错误提示意味着 `query()` 函数需要一个名为 `tag` 的参数,但是你的函数调用中没有提供这个参数。你需要检查一下你的代码,看看在调用 `query()` 函数时是否缺少了该参数。如果确实缺少了该参数,你需要为该参数提供一个值。如果你不确定该参数应该是什么值,你需要查看 `query()` 函数的定义或者文档,以确定该参数应该是什么类型和值。
阅读全文