~ bit-wise unary operator
Ladislav Andel
ladaan at iptel.org
Wed Sep 26 18:14:49 EDT 2007
More information about the Python-list mailing list
Wed Sep 26 18:14:49 EDT 2007
- Previous message (by thread): Simple threading example freezes IDLE?
- Next message (by thread): ~ bit-wise unary operator
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
Hello, why ~ bit-wise unary operator returns -(x+1) and not bit inversion of the given integer? example: a = 7978 a = ~a python returns -7979 but I need to get back 57557 as in C language. which is also in binary 0001111100101010 and inverted 1110000011010101 Is here any other operator or do I have to write it on my own? Thank you, Lada
- Previous message (by thread): Simple threading example freezes IDLE?
- Next message (by thread): ~ bit-wise unary operator
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
More information about the Python-list mailing list