如何在python中定义类似C的结构

时间:2016-06-21 18:23:02

标签: python-3.x structure

我在python中编程了一段时间。大多数情况下,我需要定义像C中的结构,例如

struct Books {
   char  title[50];
   char  author[50];
   char  subject[100];
   int   book_id;
} book;

我怎么能在python中做到。

0 个答案:

没有答案