I am trying to create a pandas series.
pandas
One column of the series should contain n sequential numbers. [1, 2, 3, ..., n]
[1, 2, 3, ..., n]
One colu
import pandas n = 30 k = 40 pandas.DataFrame([(i, random.randint(k, k+100), chr(random.randint(ord('A'), ord('Z')))) for i in xrange(0, n)
If you want you specify the column names otherwise it is set to 0,1,2