我很抱歉,但我剛開始使用Python,但我在下面的代碼未解決的參考get_func()錯誤:懸而未決參考get_func()在pycharm
class Foo:
fo = open(file_name, "r")
with open(file_name, 'r') as file:
examples = int(file.readline())
attributes = int(file.readline())
name_of_attributes = [n for n in (file.readline().replace(" ", "")).split(",")]
all_examples = file.readlines()
get_func(); // error here
def get_func(self):
list_of_keys = ['S_Length', 'S_Width', 'P_Length', 'P_Width', 'Predicate']
with open('example.txt') as f:
for line in f:
return;
正是在這一範圍內未解決的參考。名稱'get_func'在那裏不存在。我會建議閱讀基本的Python教程,因爲這段代碼展現了一些基本的錯誤,並且回答現在定義的這個問題是毫無意義的。 –