2017-08-17 4 views
0
# Step 1: Download the data. 
url = 'http://mattmahoney.net/dc/' 


def maybe_download(filename, expected_bytes): 
    """Download a file if not present, and make sure it's the right size.""" 
    if not os.path.exists(filename): 
    filename, _ = urllib.request.urlretrieve(url + filename, filename) 
    statinfo = os.stat(filename) 

filename, _は何を参照していますか?特に2番目のアンダースコア。Pythonのアンダースコアー '_'の意味

答えて

2

無視された値の規則です。 _は他の変数と同様に有効な変数名ですが、作者の意図は「2値タプルをアンパックして最初の値のみを使用しています」ということです。