Examples

In [1]:
import numpy as np
import pandas as pd
In [2]:
d = {'c1': [2, 3, 4], 'c2': [5, 6, 7]}
df = pd.DataFrame(d)
print(df.to_string())
   c1  c2
0   2   5
1   3   6
2   4   7