mylist=[]
mylist.append(7)
mylist.extend(range(9,12))
can such a thing be done in a single line in python3?
I feel it should be trivial, but for some reason I can't recall nor find how to do that.
can such a thing be done in a single line in python3? I feel it should be trivial, but for some reason I can't recall nor find how to do that. |
||||
|
|
|
You can use this one liner:
It returns the desired list:
|
|||||||||||||
|
|
You can add whatever you want to the list constructor. For example:
Or:
or, to chain the two together:
For more complex constructions, list comprehensions are the way to go. For example:
More information on list comprehensions is available at: http://docs.python.org/tutorial/datastructures.html#list-comprehensions (Edited to reflect the change in the question). |
||||
|
|
|
If you are using Python 2.* as others have said
will work if working with Python 3.*, as range now returns an iterator you need to explicitly convert to list Option 1:
Option 2:
|
|||
|
|