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