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,851 questions

51,772 answers

573 users

How to declare, initialize and print one-dimensional list (array) of integers in Python

4 Answers

0 votes
arr = [2, 234, 48, 17, 98, 918, 800, 12237, 100, 28]

for j in range(len(arr)):
    print(arr[j])

'''
run:

2
234
48
17
98
918
800
12237
100
28

'''

 



answered Feb 8, 2016 by avibootz
0 votes
arr = [0] * 10

for i in range(10):
    arr[i] = i

for i in range(len(arr)):
    print(arr[i])

'''
run:

0
1
2
3
4
5
6
7
8
9

'''

 



answered Feb 8, 2016 by avibootz
0 votes
import array as arr
 
numbersarray = arr.array('i', [1, 7, 9, 2, 1, 0, 9])
 
for i in range(0, len(numbersarray)):
    print(numbersarray[i], end=" ")

 
   
   
'''
run:
    
1 7 9 2 1 0 9 
    
'''

 



answered Apr 29, 2024 by avibootz
0 votes
import numpy as np
 
arr = np.array([1, 7, 9, 2, 1, 0, 9, 3])
 
print(arr)
 
   
   
'''
run:
    
[1 7 9 2 1 0 9 3]
    
'''

 



answered Apr 29, 2024 by avibootz
...