0
私のpythonに新しいですし、私はこれを数回見てきたの引数:の目的が何であるかを上記のコードでPythonの - 「_」機能
>>> nums = [1,2,3,4,5]
>>> [(x,y) for x in nums for y in nums]
[(1, 1), (1, 2), (1, 3), (1, 4), (1, 5), (2, 1), (2, 2), (2, 3), (2, 4), (2, 5), (3, 1), (3, 2), (3, 3), (3, 4), (3, 5), (4, 1), (4, 2), (4, 3), (4, 4), (4, 5), (5, 1), (5, 2), (5, 3), (5, 4), (5, 5)]
>>> min(_, key=lambda pair: pair[0]/pair[1])
(1, 5)
を:「_」MIN関数でとどこでそれを使うことができますか?
http://stackoverflow.com/questions/5787277/python-underscore-as-a -function-parameter – simchona
[Python underscoreを関数パラメータとして複製する](http://stackoverflow.com/questions/5787277/python-underscore-as-a-function-parameter) – ShadowRanger