netcdf文件里的日期时间该用什么类型啊

netcdf文件里的日期时间该用什么类型啊

日期时间是从文件里读出来的,用这个命令赋值date_time.append((time.strptime(b[0],"%Y-%m-%d %H:%M:%S"))),在写入netcdf时定义变量类型不知该用哪种,下面用哪种都不行.
NetCDFFile.createVariable(varName, datatype, dimensions)
    varName  - name of the variable
    datatype  -  type of the variable.  Most common types are:
                        'f'  - float
                        'd'  - double precision float
                        'i' or 'l' - int or long
                        'c' - character
                        'b' - byte

是不是应该再对赋值的类型做转化啊,该怎么转呢
看不懂。你没有在google上找到一个例子吗?