Answers for "can i append integer value a list python"

2

how to append a number to a list in python

l = [1, 2, 4, 5] 
new_item = 6
l.append(6)
print(l)
Posted by: Guest on March-17-2021

Code answers related to "can i append integer value a list python"

Python Answers by Framework

Browse Popular Code Answers by Language