I need a data structure in python that can handle data like this in C:
typedef struct lp {
    char pvid[16];
    int ppnum;
} lp_t;
lp_t lpList[100000][3];
Basically, I read in a line, process it, and stuff it to an array lpList[lp#][copy#] for the particular physical partition on a disk. Can you help?
 
    