s = pd.Series(['A', 'B'])
'x' + s
#0 xA
#1 xB
# dtype: object
s + 'y'
#0 Ay
#1 By
# dtype: object
idx = pd.Index(['A', 'B'])
# NG
'x' + idx
# Index([u'Ax', u'Bx'], dtype='object')
# OK
idx + 'y'
# Index([u'Ay', u'By'], dtype='object')
RetroSearch is an open source project built by @garambo | Open a GitHub Issue
Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo
HTML:
3.2
| Encoding:
UTF-8
| Version:
0.7.4