Python Forum

Full Version: looking for list help
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Here is the program which I was trying to write but I was not getting output as expected.

Program: ask user to take two inputs first input as list with three elements and other input as one integer and then append it and print as a list. we can use list.append() method but still not getting as expected.

ex: user provides below inputs
[1, 2, 3]
4

expected output: [1, 2, 3, 4]

but I was getting output ['[1, 2, 3]' , 4 ]
items = [1, 2, 3]
items.append(4)
print(items)
Output:
[1, 2, 3, 4]