I am trying to figure out how to append multiple values to a list in Python. I know there are few methods to do so, such as manually input the values, or put the append oper
If you take a look at the official docs, you'll see right below append, extend. That's what your looking for.
append
extend
There's also itertools.chain if you are more interested in efficient iteration than ending up with a fully populated data structure.