how to append data in list in python code example
Example 1: how to append list in python
list1 = ["hello"]
list1 = list1 + ["world"]
Example 2: append python
list.append(item)
list1 = ["hello"]
list1 = list1 + ["world"]
list.append(item)