SyntaxFix
Write A Post
Hire A Developer
Questions
If you have an index and value. Then you can add to Series as:
obj = Series([4,7,-5,3]) obj.index=['a', 'b', 'c', 'd'] obj['e'] = 181
this will add a new value to Series (at the end of Series).