bigframes.pandas.Series.to_list#
- Series.to_list(*,allow_large_results:bool|None=None)→list#
Return a list of the values.
These are each a scalar type, which is a Python scalar(for str, int, float) or a pandas scalar(for Timestamp/Timedelta/Interval/Period).
Examples:
>>>s=bpd.Series([1,2,3])>>>s0 11 22 3dtype: Int64
>>>s.to_list()[1, 2, 3]
On this page