> How do I do cubic (and higher) roots and exponents in Python? I already 
> took a look in Python and didn't find anything.

Hi Nathan,

I think you're looking for the '**' operator.  Like addition and 
multiplication, it can take in two numbers.

##########
>>> 2 ** 2
4
>>> 2 ** 3
8
>>> 2 ** 4
16
##########


Best of wishes!
_______________________________________________
Tutor maillist  -  Tutor@python.org
http://mail.python.org/mailman/listinfo/tutor

Reply via email to