How do I write the magic function below?
>>> num = 123
>>> lst = magic(num)
>>>
>>> print lst, type(lst)
[1, 2, 3], <type 'list'>
|
|
|||||||||||||||||
|
|
|
|
||
|
|
You mean this?
|
|||
|
|
|
|
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:
|
||
|
|
|
magic = lambda num: map(int, str(num)) then just do magic(12345) or magic(someInt) or whatever |
||
|
|