up vote 2 down vote favorite
share [g+] share [fb]

How do I write the magic function below?

>>> num = 123
>>> lst = magic(num)
>>>
>>> print lst, type(lst)
[1, 2, 3], <type 'list'>
link|improve this question
2  
and your question is? – SilentGhost Apr 23 '09 at 5:17
1  
There have already been many, many, attempts to have a tag that marks questions that ask for code. It could be argued easily over half of questions in the site at their core want working code to solve their problem, and its been agreed such a tag adds nothing to the system. Stop adding it back, please. – Paolo Bergantino Apr 23 '09 at 5:45
there is a difference between asking for help, and being a parasite. stop deleting it. thanks. – SilentGhost Apr 23 '09 at 5:47
There's a reason that the tag used to have almost 100 questions tagged like this and there's none now. This website is for asking programming questions. There's no reason to try and somehow ridicule that. I don't want to get into a rollback war on this, but you need to stop being a troll and just let it be. – Paolo Bergantino Apr 23 '09 at 5:49
6  
Silent, not everyone is an expert at Python. This question may be basic but it is exactly the type of question this website is made to answer. The tag has ZERO substance, and it's not going to stick around. I really don't feel like rolling this over and over, but I'm also not going to let you pollute the site with an unnecessary tag. Please just let it go. – Paolo Bergantino Apr 23 '09 at 6:03
show 9 more comments
feedback

5 Answers

up vote 1 down vote accepted
a = 123456
b = str(a)
c = []

for digit in b:
    c.append (int(digit))

print c
link|improve this answer
9  
All that's missing is some curly braces! ;) – Bjorn Tipling Apr 23 '09 at 5:27
1  
<Chuckle>. You have uncovered my deep dark secret (C++). I am humbled by the other respondents sublime python-ness. – RedBlueThing Apr 23 '09 at 5:31
feedback

You mean this?

num = 1234
lst = [int(i) for i in str(num)]
link|improve this answer
feedback

You could do this:

>>> num = 123
>>> lst = map(int, str(num))
>>> lst, type(lst)
([1, 2, 3], <type 'list'>)
link|improve this answer
1  
Note that in Python 3.0 map will return a generator, not a list. – Stephan202 Apr 23 '09 at 8:55
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:

a = 123
my_list = [a]

and "pythonizing" Cannonade's answer:

a = 123
my_list = [int(d) for d in str(a)]
link|improve this answer
I love it when I get pythonized. I feel pretty now. :P – RedBlueThing Apr 23 '09 at 6:05
feedback

magic = lambda num: map(int, str(num))

then just do magic(12345) or magic(someInt) or whatever

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.