Cara Mengubah String ke DataFrame di Python

from pandas.compat import StringIO
df = pd.read_csv(StringIO(response))
Horrible Hoopoe