Contact: aviboots(AT)netvision.net.il
41,636 questions
54,299 answers
573 users
from array import array int_array = array('i', [0, 11, 22, 33, 44, 55]) int_array.pop() print(int_array) ''' run: array('i', [0, 11, 22, 33, 44]) '''