# separating features and target

** Introduction to Machine Learning & AI with Python
Lesson Content
0% Complete
 
X = df.drop(“price”,axis=1)
y = df[[“price”]]

Course Outline