Python Program to print Elements in a List

python program to print elements in a list; Through this tutorial, i am going to show you how to print elements in a list in python.

Python program to print list elements in different ways

  • 1: Python Print List Elements using For Loop
  • 2: Python program to print list without using loop
  • 3: Python program to print list using map

1: Python Print List Elements using For Loop

# Python program to print list using for loop 
# define a list
a = [1, 2, 3, 4, 5] 
  
# printing the list using loop 
for x in range(len(a)): 
     print(a[x])

After executing the program, the output will be:

1
2
3
4
5

2: Python program to print list without using loop

# Python program to print list without using loop 
  
a = [1, 2, 3, 4, 5] 
  
# printing the list using * operator separated  
# by space  
print(*a) 
  
# printing the list using * and sep operator 
print("printing lists separated by commas") 
  
print(*a, sep = ", ")  
  
# print in new line 
print("printing lists in new line") 
  
print(*a, sep = "\n") 

After executing the program, the output will be:

1
2
3
4
5

3: Python program to print list using map

# Python program to print list using map
  
a = [1, 2, 3, 4, 5] 
print(' '.join(map(str, a)))  
  
print("in new line")
print('\n'.join(map(str, a))) 

After executing the program, the output will be:

1 2 3 4 5
in new line
1
2
3
4
5

Recommended Python Tutorials

Leave a Comment