Answers for "python examples how to print list in python"

4

how to print items in a list in a single line python

>>> l = [1, 2, 3]
>>> print(' '.join(str(x) for x in l))
1 2 3
>>> print(' '.join(map(str, l)))
1 2 3
Posted by: Guest on May-09-2020
2

python list

# Create list
List = list()
List = []
List = [0, "any data type can be added to list", 25.12,
        ("Even tuples"), {"Dictionaries": "can also be added"},
       ["can", "be nested"]]
# Accessing items

List[1]		# 0
List[-1] 	# ["can", "be nested"]

# Operations
List.append(4)		# adds 4 to end
List.pop(n=-1)		# removes element from nth position
List.count(25.12)	# 1
Posted by: Guest on August-05-2020

Code answers related to "python examples how to print list in python"

Python Answers by Framework

Browse Popular Code Answers by Language