- Похожий на массив
- Итерируемый
- Скалярное значение
Код: Выделить всё
s = pd.Series(data= "abcd")
print(s)
Код: Выделить всё
0 abcd
dtype: str
Подробнее здесь: https://stackoverflow.com/questions/798 ... -iterables
Код: Выделить всё
s = pd.Series(data= "abcd")
print(s)
Код: Выделить всё
0 abcd
dtype: str