12:34:56.78 >>> Call to main in File "/path/to_file.py", line 7
12:34:56.78    7 | def main():
12:34:56.78    8 |     arr = np.arange(10000)
12:34:56.78 .......... arr = array([   0,    1,    2, ..., 9997, 9998, 9999])
12:34:56.78 .......... arr.shape = (10000,)
12:34:56.78 .......... arr.dtype = dtype('int64')
12:34:56.78    9 |     arr = arr.reshape((100, 100))
12:34:56.78 .......... arr = array([[   0,    1,    2, ...,   97,   98,   99],
12:34:56.78                         [ 100,  101,  102, ...,  197,  198,  199],
12:34:56.78                         [ 200,  201,  202, ...,  297,  298,  299],
12:34:56.78                         ...,
12:34:56.78                         [9700, 9701, 9702, ..., 9797, 9798, 9799],
12:34:56.78                         [9800, 9801, 9802, ..., 9897, 9898, 9899],
12:34:56.78                         [9900, 9901, 9902, ..., 9997, 9998, 9999]])
12:34:56.78 .......... arr.shape = (100, 100)
12:34:56.78   10 |     df = pd.DataFrame(arr)
12:34:56.78 .......... df =       0     1     2     3   ...    96    97    98    99
12:34:56.78                 0      0     1     2     3  ...    96    97    98    99
12:34:56.78                 1    100   101   102   103  ...   196   197   198   199
12:34:56.78                 2    200   201   202   203  ...   296   297   298   299
12:34:56.78                 3    300   301   302   303  ...   396   397   398   399
12:34:56.78                 ..   ...   ...   ...   ...  ...   ...   ...   ...   ...
12:34:56.78                 96  9600  9601  9602  9603  ...  9696  9697  9698  9699
12:34:56.78                 97  9700  9701  9702  9703  ...  9796  9797  9798  9799
12:34:56.78                 98  9800  9801  9802  9803  ...  9896  9897  9898  9899
12:34:56.78                 99  9900  9901  9902  9903  ...  9996  9997  9998  9999
12:34:56.78                 
12:34:56.78                 [100 rows x 100 columns]
12:34:56.78 .......... df.shape = (100, 100)
12:34:56.78   11 |     series = df[0]
12:34:56.78 .......... series = 0 = 0; 1 = 100; 2 = 200; ...; 97 = 9700; 98 = 9800; 99 = 9900
12:34:56.78 .......... series.shape = (100,)
12:34:56.78 .......... series.dtype = dtype('int64')
12:34:56.78   12 |     return series
12:34:56.78 <<< Return value from main: 0 = 0; 1 = 100; 2 = 200; ...; 97 = 9700; 98 = 9800; 99 = 9900