Use the XPath in either of the following ways :
choices = driver.find_elements_by_xpath("//div[contains(.,'5') and contains(@class, 'option')]")
or
choices = driver.find_elements_by_xpath("//div[contains(.,'5')][contains(@class, 'option')]")
For further understanding, you can refer to the Selenium Course.