Следующий код Python дает мне ошибку индексации в строке 17, версия = результат [marker:]. Splitlines () [0]:
import os, math, sys
#OS_bit = (round(math.log(sys.maxint,2)+1)) # get the bit
os.system("sudo apt-get install python-pip && sudo apt-get install tor") # installing dependencies
os.system("pip install -U selenium")
os.system("pip install Pysocks")
os.system("pip install pyvirtualdisplay && apt-get install xvfb")
#print("\n \n {} \n \n".format(OS_bit))
os.system('firefox -v > tmp')
result = open('tmp', 'r').read()
print (result)
marker = result.find('Firefox') + 8
print (marker)
version = result[marker:].splitlines()[0]
print (version)
a,b,c = version.split(".")
os.remove('tmp')
версия = результат [marker:] .splitlines () [0]
IndexError: список индексов выходит за пределы диапазона
Не знаете, как обращаться. Какие-нибудь быстрые уроки, которыми можно поделиться? Спасибо.