A RetroSearch Logo

Home - News ( United States | United Kingdom | Italy | Germany ) - Football scores

Search Query:

Showing content from https://mail.python.org/pipermail/python-dev/2006-February/061490.html below:

[Python-Dev] (-1)**(1/2)==1?

[Python-Dev] (-1)**(1/2)==1? [Python-Dev] (-1)**(1/2)==1?Georg Brandl g.brandl at gmx.net
Mon Feb 20 16:19:45 CET 2006
Jonathan Barbero wrote:
> Hello!
>   My name is Jonathan, i´m new with Python.
> 
>    I try this in the command line:
>   
>    >>> (-1)**(1/2)
>     1
> 
>    This is wrong, i think it must throw an exception.
>     What do you think?

>>> 1/2
0
>>> (-1)**0
1

It's fine.

If you want to get a floating point result from dividing,
make one of the two numbers a float:

>>> 1.0/2
0.5
>>>

Georg

More information about the Python-Dev mailing list

RetroSearch is an open source project built by @garambo | Open a GitHub Issue

Search and Browse the WWW like it's 1997 | Search results from DuckDuckGo

HTML: 3.2 | Encoding: UTF-8 | Version: 0.7.4