I am very newbie in python.
I would like to launch a browser (for ex. Mozilla) but with parameters, that is the url address of a page .
I have tried with
Code:
import os
os.system('mozilla')
It opens Mozilla and when I exit it returns "0"
But it does not work in this form:
Code:
os.system('mozilla', 'http://www.google.com')
TypeError: system() takes exactly 1 argument (2 given)