diff --git a/CSV 2 JSON or HTML Table b/CSV 2 JSON or HTML Table index b1412ef..78b58fe 100644 --- a/CSV 2 JSON or HTML Table +++ b/CSV 2 JSON or HTML Table @@ -34,9 +34,9 @@ for x in headers: print "", x, "" print "" -for x in df.iterrows(): +for (i, x) in df.iterrows(): print "" - for y in x[1]: + for y in x: print "", y, "" print ""