Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

how to append items to a list in python

# plz suscribe to my youtube channel -->
# https://www.youtube.com/channel/UC-sfqidn2fKZslHWnm5qe-A

#append items to list
list_example = ["python","ruby","java","javascript","c#","css","html"]
print(list_example)
list_example.append("assembly")
print(list_example)
#output
['python', 'ruby', 'java', 'javascript', 'c#', 'css', 'html']
['python', 'ruby', 'java', 'javascript', 'c#', 'css', 'html', 'assembly']
Source by www.kite.com #
 
PREVIOUS NEXT
Tagged: #append #items #list #python
ADD COMMENT
Topic
Name
6+4 =