I know python has math functions like 5+6 and 5*6 and 5/6 etc...but I have something like this:
x=575124357

and need to add them all together:
5+7+5+1+2+4+3+5+8=40

Recommended Answers

All 3 Replies

We help those who show a little effort at first.

Hint, convert x to a string and iterate the string summing up the int value of each character.

Something like this will work, I just have to get it to the point that it does it without the 'raw_input'......

>>>sum([int(i) for i in raw_input("Enter integer: ")])
Enter integer:1234567
28

Wait, I think I've got it:

>>>x=1234567
>>>sum(int (i) for i in str(x)])
28
Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.