how to fill whole column with same value in oandas

Solutions on MaxInterview for how to fill whole column with same value in oandas by the best coders in the world

showing results for - "how to fill whole column with same value in oandas"
Paola
20 Feb 2018
1In [194]:
2df['A'] = 'foo'
3df
4
5Out[194]:
6     A
70  foo
81  foo
92  foo
103  foo
11