Re: [Tutor] Adding numbers within a string

2016-10-12 Thread Danny Yoo
Please do not give homework solutions. Thanks. ___ Tutor maillist - Tutor@python.org To unsubscribe or change subscription options: https://mail.python.org/mailman/listinfo/tutor

Re: [Tutor] Adding numbers within a string

2016-10-12 Thread D . V . N . Sarma డి . వి . ఎన్ . శర్మ
Then Isaac's function does that(but you have to leave a space after last number in the string). def foo(x): a, b = 0, "" for i in x: if i != " ": b += i else: print ("this is b", b) a += int(b) print ("this is a",a)

Re: [Tutor] Adding numbers within a string

2016-10-12 Thread hell gates
You can write your own str.split or just use while loop. 12.10.2016, 15:12, "LQ Soh" : To whom it may concern, Can someone enlighten me as to how you can create a function such that sum_numbers('10 5 8'), when run, will give an answer of 23, without using str.split() and

Re: [Tutor] Adding numbers within a string

2016-10-12 Thread Alan Gauld via Tutor
On 12/10/16 17:58, D.V.N.Sarma డి.వి.ఎన్.శర్మ wrote: > Sorry, I did not read the conditions that split and for should not be used. It is even more confusing - split() may NOT be used but 'for' MUST be used... -- Alan G Author of the Learn to Program web site http://www.alan-g.me.uk/ http://www.a

Re: [Tutor] Adding numbers within a string

2016-10-12 Thread D . V . N . Sarma డి . వి . ఎన్ . శర్మ
Sorry, I did not read the conditions that split and for should not be used. regards, Sarma. On Wed, Oct 12, 2016 at 10:20 PM, D.V.N.Sarma డి.వి.ఎన్.శర్మ wrote: > def string_sum(s): > total = 0 > items = s.split(" ") > for item in items: >total += int(item) > p

Re: [Tutor] Adding numbers within a string

2016-10-12 Thread D . V . N . Sarma డి . వి . ఎన్ . శర్మ
def string_sum(s): total = 0 items = s.split(" ") for item in items: total += int(item) print(total) You can call the function as string_sum("10 4 5 ") Output will be 19. regards, Sarma. On Wed, Oct 12, 2016 at 3:22 PM, hell gates wrote: >You can write y

Re: [Tutor] Adding numbers within a string

2016-10-12 Thread isaac tetteh
sk again. Thanks [😊] From: Tutor on behalf of Bob Gailer Sent: Wednesday, October 12, 2016 2:26 PM To: LQ Soh Cc: tutor@python.org Subject: Re: [Tutor] Adding numbers within a string On Oct 12, 2016 4:09 AM, "LQ Soh" wrote: > > To whom it may

Re: [Tutor] Adding numbers within a string

2016-10-12 Thread Bob Gailer
On Oct 12, 2016 4:09 AM, "LQ Soh" wrote: > > To whom it may concern, > Can someone enlighten me as to how you can create a function such > that sum_numbers('10 5 8'), when run, will give an answer of 23, without > using str.split() and using a for loop def sum_numbers(x): for x in [1]:

Re: [Tutor] Adding numbers within a string

2016-10-12 Thread Alan Gauld via Tutor
On 12/10/16 01:37, LQ Soh wrote: > To whom it may concern, > Can someone enlighten me as to how you can create a function such > that sum_numbers('10 5 8'), when run, will give an answer of 23, without > using str.split() and using a for loop I'm assuming this is some kind of classroom exercise? O

[Tutor] Adding numbers within a string

2016-10-12 Thread LQ Soh
To whom it may concern, Can someone enlighten me as to how you can create a function such that sum_numbers('10 5 8'), when run, will give an answer of 23, without using str.split() and using a for loop ___ Tutor maillist - Tutor@python.org To unsubscrib