Basic Answer to very basic, how do you find square roots?

Michaell Taylor michaell.taylor at reis.com
Sun Apr 1 10:11:09 EDT 2001


Umm.  Why not  just 

x**.5

to find sqrt of x.






Message: 4
Message-ID: <004201c0b9c1$f0b38f20$020000c3 at node02>
From: "Sandipan Gangopadhyay" <sandipan at vsnl.com>
To: "johnston112" <gordonj at paradise.net.nz>
Cc: <python-list at python.org>
References: <9a408a$1mpp$1 at raewyn.paradise.net.nz>
Subject: Re: very basic, how do you find square roots?
Date: Sat, 31 Mar 2001 14:36:56 +0530
MIME-Version: 1.0
Content-Type: text/plain;
	charset="iso-8859-1"
Content-Transfer-Encoding: 7bit
Sender: python-list-admin at python.org
Precedence: bulk
List-Help: <mailto:python-list-request at python.org?subject=help>
List-Post: <mailto:python-list at python.org>
List-Subscribe: <http://mail.python.org/mailman/listinfo/python-list>,
	<mailto:python-list-request at python.org?subject=subscribe>
List-Id: General discussion list for the Python programming language 
<python-list.python.org>
List-Unsubscribe: <http://mail.python.org/mailman/listinfo/python-list>,
	<mailto:python-list-request at python.org?subject=unsubscribe>
List-Archive: <http://mail.python.org/pipermail/python-list/>

>>> import math
>>> math.pow(2,4)
16.0
>>> math.pow(2, .5)
1.41421356237

Regards,

Sandipan
----- Original Message -----
From: "johnston112" <gordonj at paradise.net.nz>
Newsgroups: comp.lang.python
To: <python-list at python.org>
Sent: Saturday, March 31, 2001 12:35 PM
Subject: very basic, how do you find square roots?


> Yes, that is my question :)
> I am trying to make a program that dose the quadratic equation.
>
> johnston112
>
>
> --
> http://mail.python.org/mailman/listinfo/python-list
>






More information about the Python-list mailing list