webbrowser.get("C:/Program Files (x86)/Google/Chrome/Application/chrome.exe %s").open('file://' + os.path.realpath('get.html'))
print('hello')
I have the code above in one of my python files. When I execute it, it opens 'get.html' just fine. However, the execution freezes at that point, the command prompt wont say 'hello' until I close the browser.
Can anyone explain how to fix this issue?