Я новичок в Python, кто-нибудь может объяснить мне этот фрагмент кода?
TRAIN_CSV = './train1.csv' # this comtains 100 entries
TEST_CSV = './test1.csv' # this contains 50 entries
train_df = pd.read_csv(TRAIN_CSV)
test_df = pd.read_csv(TEST_CSV)
for dataset in [train_df, test_df]: # what does this mean here
do something