我有一個問題,下列程式我在執行的時候她一直告訴我IndexError: list index out of range,我想解決這問題,但他一直存在一樣的結果,請問有人知道我嘎怎麼改善他嗎?
from __future__ import absolute_import
from __future__ import division
from __future__ import print_function
try:
    from urllib.request import urlopen # python 3
except ImportError:
    from urllib2 import urlopen # python 2
import sys
import tarfile
import tempfile
import shutil
dataset = sys.argv[1]
url = "https://people.eecs.berkeley.edu/~tinghuiz/projects/pix2pix/datasets/%s.tar.gz" % dataset
with tempfile.TemporaryFile() as tmp:
    print("downloading", url)
    shutil.copyfileobj(urlopen(url), tmp)
    print("extracting")
    tmp.seek(0)
    tar = tarfile.open(fileobj=tmp)
    tar.extractall()
    tar.close()
    print("done")