Script execution
This commit is contained in:
@@ -8,9 +8,9 @@ import sys, inspect, os, traceback
|
||||
|
||||
a = array('i',[50,105,0x8899,0xffffff,1,0,0,0,0,0,0,0,0,0,1])
|
||||
print a
|
||||
b = array('i',[60]*10)
|
||||
b = [0]*10
|
||||
print b
|
||||
a.extend(b)
|
||||
a.fromlist(b)
|
||||
print a
|
||||
import pickle
|
||||
c = pickle.dumps(a)
|
||||
|
||||
Reference in New Issue
Block a user