-
Notifications
You must be signed in to change notification settings - Fork 0
Open
Description
import builtins
for module in dir(builtins):
try:
exec(f"import {module}")
print(f"Imported: {module}")
except ImportError:
print(f"Error importing: {module}")
except Exception as e:
print(f"Error: ")
Import necessary packages
import numpy as np
import pandas as pd
import matplotlib.pyplot as plt
from sklearn.model_selection import train_test_split
from sklearn.linear_model import LinearRegression
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
No labels