Answers for "get chrome version with python"

0

get chrome version with python

# maybe this is stupid but
from os import listdir

def get_chrome_ver(mypath):
    return(listdir(mypath)[0])

print(get_chrome_ver('C:\Program Files (x86)\Google\Chrome\Application'))
Posted by: Guest on May-09-2022

Code answers related to "get chrome version with python"

Python Answers by Framework

Browse Popular Code Answers by Language