This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Show Mariopa County Database | |
SELECT * FROM maricopa; | |
#Show Pima County Database | |
SELECT * FROM pima; | |
#Combine Maricopa and Pima databases | |
SELECT maricopa_id AS cumulative_id, party, age, gender FROM maricopa | |
UNION | |
SELECT pima_id as cumulative_id, party, age, gender FROM pima; |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CREATE TABLE STATE( | |
state_id INT NOT NULL, | |
party VARCHAR(30) NOT NULL, | |
age INT NOT NULL, | |
gender VARCHAR(15) NOT NULL, | |
PRIMARY KEY(state_id)); | |
INSERT INTO STATE(state_id, PARTY, AGE, GENDER) | |
VALUES (123, 'D', 20, 'F'); | |
INSERT INTO STATE(state_id, PARTY, AGE, GENDER) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from selenium import webdriver | |
from webdriver_manager.chrome import ChromeDriverManager | |
driver = webdriver.Chrome(ChromeDriverManager().install()) | |
url = 'https://www.carvana.com/cars' | |
driver.get(url) | |
_html = driver.page_source |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.