Latest web development tutorials

Python beinhaltet 53 Übungen

Python 100 Li Python 100 Li

Thema: Lernen bitweise XOR ^ zu verwenden.

Programmanalyse: 0 ^ 0 = 0; 0 ^ 1 = 1; 1 ^ 0 = 1; 1 ^ 1 = 0

Source Code:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

if __name__ == '__main__':
    a = 077
    b = a ^ 3
    print 'The a ^ 3 = %d' % b
    b ^= 7
    print 'The a ^ b = %d' % b

Das obige Beispiel Ausgabe lautet:

The a ^ 3 = 60
The a ^ b = 59

Python 100 Li Python 100 Li