I want to add some columns with an funktion without typing each name for the colum like this
for i in range(0,11):
df["row" + i] = [random.randrange(1, 50, 1) for i in range(7)] # after the = is an exampel
thanks for you´re help
I want to add some columns with an funktion without typing each name for the colum like this
for i in range(0,11):
df["row" + i] = [random.randrange(1, 50, 1) for i in range(7)] # after the = is an exampel
thanks for you´re help