Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,919 questions

51,852 answers

573 users

How to extend initialized array with a range of int numbers in Python

2 Answers

0 votes
import array 

a = array.array('i', range(5)) # i = int

print(a)   
print(a[1:4])
print(a[2:3])
print(a[0])
print(a[3])

a.extend(range(4))
print(a) 



'''
run:
 
array('i', [0, 1, 2, 3, 4])
array('i', [1, 2, 3])
array('i', [2])
0
3
array('i', [0, 1, 2, 3, 4, 0, 1, 2, 3])

'''

 



answered May 11, 2019 by avibootz
0 votes
import array 
 
a = array.array('i', range(5)) # i = int
 
print(a)   
print(a[1:4])
print(a[2:3])
print(a[0])
print(a[3])
 
a.extend(range(5, 9))
print(a) 
 
 
 
'''
run:
  
array('i', [0, 1, 2, 3, 4])
array('i', [1, 2, 3])
array('i', [2])
0
3
array('i', [0, 1, 2, 3, 4, 5, 6, 7, 8])
 
'''

 



answered May 11, 2019 by avibootz

Related questions

1 answer 154 views
154 views asked Dec 22, 2017 by avibootz
3 answers 249 views
1 answer 168 views
2 answers 244 views
...