Search
 
SCRIPT & CODE EXAMPLE
 

PYTHON

pickled list

import pickle
mylist = ['I wish to complain about this parrot what I purchased not half an hour ago from this very boutique.', "Oh yes, the, uh, the Norwegian Blue...What's,uh...What's wrong with it?", "I'll tell you what's wrong with it, my lad. 'E's dead, that's what's wrong with it!", "No, no, 'e's uh,...he's resting."]
with open('parrot.pkl', 'wb') as f:
   pickle.dump(mylist, f)
with open('parrot.pkl', 'rb') as f:
   mynewlist = pickle.load(f)
mynewlist
output: ['I wish to complain about this parrot what I purchased not half an hour ago from this very boutique.', "Oh yes, the, uh, the Norwegian Blue...What's,uh...What's wrong with it?", "I'll tell you what's wrong with it, my lad. 'E's dead, that's what's wrong with it!", "No, no, 'e's uh,...he's resting."]
Comment

PREVIOUS NEXT
Code Example
Python :: python tkinter dynamic toggle button 
Python :: chi square test contingency table python 
Python :: **kwargs in python 
Python :: getting size of list in python 
Python :: How can you hide a tkinter window 
Python :: read a csv file in pandas 
Python :: how to comment code in python 
Python :: pytube python 
Python :: how to see directory from os module 
Python :: python loc 
Python :: seaborn green color palette python 
Python :: numpy find mean of array 
Python :: sort values within groups pandas dataframe 
Python :: python for unity 
Python :: pandas drop column if exists 
Python :: files python 
Python :: python keyboard 
Python :: snake water gun game in python 
Python :: python tutorial pdf 
Python :: strip characters from a string python 
Python :: python treemap example 
Python :: check word in list 
Python :: how to append to a list in python 
Python :: matplotlib default style 
Python :: python logical operators 
Python :: changing names of column pandas 
Python :: how to combine two lists in python 
Python :: catch exception python unittest 
Python :: Python format() Method for Formatting Strings 
Python :: python if boolean logic 
ADD CONTENT
Topic
Content
Source link
Name
9+9 =