Script execution

This commit is contained in:
boccioli_m
2017-10-10 16:03:20 +02:00
parent d65b9623bb
commit 0fdeae325f

View File

@@ -13,8 +13,8 @@ print 'a ', a
b = array('i',[0]*10)
print 'b ', b
a.extend(b)
print b.itemsize
a.append(4)
a.fromlist([1,2,3,4])
print 'a2', a
c = pickle.dumps(a)
print 'c2', c