this is a piece of code where I want to change the date and month in the link. I don't want to use the date-time module because I will be scraping and storing some information from the website for each day and for each month I will be saving the data in CSV so after every month I want to create a new CSV file also if there would be a for loop for a month I want to use it in naming the CSV file while saving it
        from selenium import webdriver
        import time
        path="C:\\Users\\Nihal\\Downloads\\chromedriver_win32\\chromedriver.exe"
        import numpy 
        driver = webdriver.Chrome(path)
        driver.get('https://www.wunderground.com/history/daily/in/mangalore/VOML/date/2013-4-14')
 
     
    