I have build a list which contains href from website and i wanna randomly select one of this link, how can i do that?
from bs4 import BeautifulSoup
import urllib
import requests
import re
import random
url = "https://www.formula1.com/en/latest.html"
articles = []
respone = urllib.request.urlopen(url)
soup = BeautifulSoup(respone,'lxml')
def getItems():
       for a in soup.findAll('a',attrs={'href': re.compile("/en/latest/article.")}):
           articles = a['href']
           x = random.choice(articles)
           print(x)
That code work, but selecting only random index from all of the objects
 
    