标签: python-3.x structure
我在python中编程了一段时间。大多数情况下,我需要定义像C中的结构,例如
struct Books { char title[50]; char author[50]; char subject[100]; int book_id; } book;
我怎么能在python中做到。