Hi, I am a very newbie who would very much appreciate some hints.
Python 2.52. on Windows XP for now. Soon on Ubuntu 8
I am teaching myself Python following free tutorials. I can solve
problems using arithmetic, but when I try to upgrade the programs
using math libraries nothing seems to work. I
Hi, I am a very newbie who would very much appreciate some hints.
Python 2.52. on Windows XP for now. Soon on Ubuntu 8
I am teaching myself Python following free tutorials. I can solve
problems using arithmetic, but when I try to upgrade the programs
using math libraries nothing seems to work. I
Hi, thak you. I get the following:
>
> > *** Error message *
>
> > Traceback (most recent call last):
> > File "C:/Python25/z - MIS PROGRAMAS/volumen-b.py", line 20,
> > in
> >
> > main()
> > File "C:/Python25/z - MIS PROGRAMAS/volumen-b.py", line 13,
> > in main
> > vo
>
> Thank you. I´ll try all methods to figure out the convenience of each
Adolfo
>
>
--
http://mail.python.org/mailman/listinfo/python-list
Thank you :-), I´ll do
Adolfo
>
> pi is not a global name. When you do "import math",you aren't adding
> everything to the name space, you are just telling python that you are
> going to be using that file. You then refer to it as math.*, such as
> "math.pi", or "math.pow(r,3)". To use it the way y