Re: can't solve an exercise-help me with it
- From: bokr@xxxxxx (Bengt Richter)
- Date: Thu, 12 Jan 2006 06:03:19 GMT
On Thu, 12 Jan 2006 05:51:10 +0100, "hossam" <nono@xxxxxxxxxxx> wrote:
>I'm studying python newly and have an exercise that is difficult for me as a
>beginner.Here it is :
>"Write a program that approximates the value of pi by summing the terms of
>this series:
>4/1-4/3+4/5-4/7+4/9-4/11+.... The program should prompt the user for n, the
>number of terms to sum and then output the sum of the first n terms of this
>series."
>
>any help would be appreciated.
>
Is this homework?
What have you tried so far?
Hints: raw_input, int. And sum, if you want a one-liner.
Hint2: try 4/7 and 4.0/7 interactively
Regards,
Bengt Richter
.
Relevant Pages
- Re: Comments needed for attempted proof of a simple integral
... > X" problems aren't so difficult because standard math education has been ... > about solving problems of that nature and I can usually verify answers ... > exercise for me to verify, and there are a lot of those in this book. ... >> My thinking is to translate the integral into a sum, ... (sci.math) - cant solve an exercise-help me with it
... I'm studying python newly and have an exercise that is difficult for me as a ... "Write a program that approximates the value of pi by summing the terms of ... number of terms to sum and then output the sum of the first n terms of this ... Prev by Date: ... (comp.lang.python) - Steve Summit C notes , exercise
... this is the programme i created, for exercise 2, assignment 3 at ... the average of the squares of the numbers from 1 to 10. ... the sum of all ... (comp.lang.c) - Re: cant solve an exercise-help me with it
... >I'm studying python newly and have an exercise that is difficult for me as a ... >"Write a program that approximates the value of pi by summing the terms of ... >number of terms to sum and then output the sum of the first n terms of this ... This isn't a free homework service. ... (comp.lang.python) - Re: Comments needed for attempted proof of a simple integral
... I can usually verify answers to those problems with software. ... It's proofs that are hardest type of exercise for me to verify, ... > such that s is constant on the open subintervals of P. ... > gives the following sum: ... (sci.math) |
|