Edit - я думаю, что предпочитаю другой ответ, но оставил здесь в качестве примера .append
Вы можете добавить непосредственно к объекту серии:
s = pd.Series()
for _ in range(int(input("Enter number of entries: "))):
s.append(pd.Series(input("Enter an element for the list: ")))
print(s)
например:
In [14]: s = pd.Series()
In [15]: for _ in range(int(input('entries : '))):
...: s = s.append(pd.Series(input('el : ')))
...:
entries : 5
el : 3
el : 2
el : 1
el : 6
el : 7
In [16]: s
Out[16]:
0 3
0 2
0 1
0 6
0 7
dtype: object