I'm new to Python. I have scraped a html table by pandas and I'm looking for ways to insert a new column with repeated string value and set it as the index of the table (as follow:). Reminded that the table is a long one :).
Original df:
Age IQ
12 100
15 111
. .
. .
. .
. .
13 121
Expected df"
Group Age IQ
A 12 100
A 15 111
. . .
. . .
. . .
. . .
A 13 121