locs - find a descriptive way

PHOTO EMBED

Mon Mar 27 2023 04:45:16 GMT+0000 (Coordinated Universal Time)

Saved by @lmacciomaretto

df.iloc[rows,columns] # numerical indexing
df.loc[rows, columns] # Label based indexing
df.loc[condition_mask,columns] # conditional masking
df.iloc[:,:] # slicing
df.loc[:,:] # slicing
content_copyCOPY