Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
このメッセージでは、作者は次のように書いています
def neighbors((x, y)):
Python 3.3でこれを実行しようとすると、構文が無効であることがわかりました。どうすれば問題を解決できますか?
解決策は次のとおりです。
def neighbors(point): x, y = point
この機能は、さまざまな理由で3.xから削除されました。
別のオプションは、次のように書くことです
def neighbors(x, y):
と交換:
for (nx, ny) in neighbors(path[-1]):
と
for (nx, ny) in neighbors(*path[-1]):