no cpickle module
When I tried
import cpikcle as pickle
I got an error message saying no module named cpickle
.
Does anybody know how to get cpickle
module?
cpickle
is faster than pickle
.开发者_开发技巧
Thanks
Try import cPickle as pickle
instead. Note the upper-case 'P'. Also, you misspelled cPickle
as cpikcle
in your question.
精彩评论