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

Prodentim Probiotics Specially Designed For The Health Of Your Teeth And Gums

Instant Grammar Checker - Correct all grammar errors and enhance your writing

Teach Your Child To Read

Powerful WordPress hosting for WordPress professionals

Disclosure: My content contains affiliate links.

31,038 questions

40,794 answers

573 users

How to append values to int array in Python

2 Answers

0 votes
from array import array

arr = array("i")

arr.append(34)
arr.append(3)
arr.append(98)

print(arr)

for val in arr:
    print(val)
 
  
  
  
'''
run:

array('i', [34, 3, 98])
34
3
98
   
'''

 





answered Aug 28, 2020 by avibootz
0 votes
from array import array
 
arr = array("i")
 
for i in range(0, 10):
    arr.append(i)
 
print(arr)
 
for val in arr:
    print(val)
  
   
   
   
'''
run:
 
array('i', [0, 1, 2, 3, 4, 5, 6, 7, 8, 9])
0
1
2
3
4
5
6
7
8
9
    
'''

 





answered Aug 28, 2020 by avibootz

Related questions

1 answer 86 views
2 answers 91 views
1 answer 63 views
1 answer 79 views
1 answer 73 views
...