Forum: Python Oct 24th, 2007 |
| Replies: 6 Views: 7,141 Re: Convert negative decimal to binary Hum... 10010010 is a bit-sign representation (sign bit followed by the 7 bit representation of 18) wich is very unusual. If you want the complement to 2 reprrésentation, you have to know that whith... |
Forum: Python Oct 24th, 2007 |
| Replies: 1 Views: 727 Re: returning true and false... Hello,
The keywords are True and False
I dont remember why, but I use comparisons on begginnings of strings got with os.path.normpath, something like in:
def select_project(self):
... |