SyntaxFix
Write A Post
Hire A Developer
Questions
You could use the object data type:
>>> import numpy >>> s = numpy.array(['a', 'b', 'dude'], dtype='object') >>> s[0] += 'bcdef' >>> s array([abcdef, b, dude], dtype=object)