vote up 2 vote down star

How do I write the magic function below?

>>> num = 123
>>> lst = magic(num)
>>>
>>> print lst, type(lst)
[1, 2, 3], <type 'list'>
flag
2  
and your question is? – SilentGhost Apr 23 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 at 5:45
there is a difference between asking for help, and being a parasite. stop deleting it. thanks. – SilentGhost Apr 23 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 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 at 6:03
show 9 more comments

5 Answers

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

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

print c
link|flag
9  
All that's missing is some curly braces! ;) – apphacker Apr 23 at 5:27
1  
<Chuckle>. You have uncovered my deep dark secret (C++). I am humbled by the other respondents sublime python-ness. – Cannonade Apr 23 at 5:31
vote up 20 vote down

You mean this?

num = 1234
lst = [int(i) for i in str(num)]
link|flag
vote up 7 vote down

You could do this:

>>> num = 123
>>> lst = map(int, str(num))
>>> lst, type(lst)
([1, 2, 3], <type 'list'>)
link|flag
1  
Note that in Python 3.0 map will return a generator, not a list. – Stephan202 Apr 23 at 8:55
vote up 4 vote down

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|flag
I love it when I get pythonized. I feel pretty now. :P – Cannonade Apr 23 at 6:05
vote up 3 vote down

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

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

link|flag

Your Answer

Get an OpenID
or

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