def evaluate():
a=2
return a
print(evaluate())
Then im getting "unresolved reference" in the pycharm where the evaluate() in print function is underlined in red color.
def evaluate():
a=2
return a
print(evaluate())
Then im getting "unresolved reference" in the pycharm where the evaluate() in print function is underlined in red color.