I have a simple question: I have this code:
# open an HTML file on my own (Windows) computer
url = "$user data here"
webbrowser.open(url,new=new)
I need to have it so that when it is run the user can enter lets say 3 different URL's and have that code created two more times filling in the variable spot with one of the three variables in each part.
I would assume I need a loop but how can I define the variables dynamicly that way if they enter 3 or 5 urls it would generate the code to do that?
Thanks in advance, Justin