You have to know that there will be always some methods that helps us to Find Element (which returns a WebElement object matching the query and throws and exception if such an element cannot be found) and its plural Find Elements (which returns a list of WebElements, possibly empty if no DOM elements match the query).
The quickest way to locate an element. Bear in mind that the website you are browsing needs uniques ID, otherwise you are going to get an error. An example would be:
1) element = driver.find_element_by_id("value_ID_searched")
2) from selenium.webdriver.common.by import By
element = driver.find_element(by=By.ID, value="value_ID_searched")