How do I write the magic function below?
>>> num = 123
>>> lst = magic(num)
>>>
>>> print lst, type(lst)
[1, 2, 3], <type 'list'>
|
|
|||||||||
|
|
You could do this:
|
|||||
|
|
Don't use the word list as variable name! It is a name of python built in data type. Also, please clarify your question. If you are looking for a way to create a one-member list, do the following:
and "pythonizing" Cannonade's answer:
|
|||
|
|
then just do
or
|
||||
|
|
According to my timings, this solution is considerably faster than the string method (
Timings:
|
|||
|
|
|
Just use :
|
||||
|