Velocity Reviews

Velocity Reviews (http://www.velocityreviews.com/forums/index.php)
-   Python (http://www.velocityreviews.com/forums/f43-python.html)
-   -   new to python and programming at large (http://www.velocityreviews.com/forums/t956345-new-to-python-and-programming-at-large.html)

Ulrich Eckhardt 01-09-2013 04:06 PM

Re: new to python and programming at large
 
Am 09.01.2013 22:05, schrieb kwakukwatiah@gmail.com:
> pls I want to write a function that can compute for the sqrt root of
> any number.bt it not working pls help.


Whenever describing an error, be precise. In this particular case, we
have some sourcecode (which is good!) but what is still missing is what
exactly you see when running that code (output and error messages) and
what you expected instead.


> from math import sqrt
> def squareroot(self):
> x = sqrt(y)
> print x


In this very case, I also wonder if the tutorial you are learning from
assumes Python 2 while you are using Python 3. This is important,
because "print" is a special statement in Python 2 but a normal function
in Python 3.

That said, I see two errors here:
1. "self": This is customary used when you have a class function that
takes an instance of that class. This instance is then the first
parameter and called "self". Python doesn't enforce this, but you should
adhere to this convention to avoid confusion. Since you are not writing
a class, don't name this parameter "self".
2. There is no "y" in that code. I guess that if you renamed your "self"
to "y", you would get what you wanted.

Good luck and welcome to Python!

Uli


kwakukwatiah@gmail.com 01-09-2013 09:05 PM

new to python and programming at large
 
pls I want to write a function that can compute for the sqrt root of any number.bt it not working pls help.
from math import sqrt
def squareroot(self):
x = sqrt(y)
print x


All times are GMT. The time now is 05:18 PM.

Powered by vBulletin®. Copyright ©2000 - 2013, vBulletin Solutions, Inc.
SEO by vBSEO ©2010, Crawlability, Inc.


1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57