I love Linux


This question cards for a long time, the question is a picture, open to see
Here Insert Picture Description
to see prompt thought process which Linux commands until later that followed python serialization data file, save it after the FF D9, read the serialized file out
Here Insert Picture Description
to write the script draw it

 
import pickle

with open('dump1.pickle', 'rb') as f:

    f= pickle.load(f)

data = list()

for i in range(len(f)):

    tem = [' ']*100

    data.append(tem)

for i, j in enumerate(f):

    for m in j:
        data[i][m[0]] = m[1]

for i in data:

    print(''.join(i))

 

Run appears
Here Insert Picture Description
too flag read (finally understand tips sl what it means)

Guess you like

Origin www.cnblogs.com/harmonica11/p/11365782.html