I'm am working on my first attempt writing a program that opens a Wikipedia page based on year entered, but each time I run the program, the tabs open for every year I have listed so far.
I have tried writing it as a for loop, while loop, and (attempted and if statement); how can I make it so only one tab opens for the correct input year? `
year_entered = input("year of interest? ")
year = ''
ninety_five = webbrowser.open_new_tab('https://en.wikipedia.org/wiki/1995/')
#this is repeated for years 1995-2020
#I've also tried *while True:*
for year_entered in range(1995, 2000):
year = str(year_entered)
if year == "1995":
print(ninety_five)
break
elif year == "1996":
print(ninety_six)
break
Thank You
It seems that you kind of messed up the whole workflow of the program, so I will try to guide you through a method of making it.
input
method.webbrowser
module.Your code should be looking something like this:
Note, that I haven't used any loops, because we aren't actually looping, or going through something a couple of times. Also, if you have a lot of
if else
statements in your code, most of the times you can do it in a more efficient and less time-consuming way.