Check out this quick tip on the difference between the append() and extend() methods in Python lists!
1. Use append() to add a single element to a list as a nested list.
2. Use extend() to add multiple elements to a list.
#PythonProgramming #PythonLists #appendVsExtend #Tips