Saltar al contenido

función xor en el ejemplo de código python

Posterior a de nuestra prolongada compilación de datos dimos con la solución esta escollo que suelen tener algunos los usuarios. Te compartimos la solución y nuestro deseo es servirte de mucha ayuda.

Ejemplo 1: operadores bit a bit de Python

x << y
Returns x with the bits shifted to the left by y places (and new bits on the right-hand-side are zeros). This is the same as multiplying x by 2**y.
x >> y
Returns x with the bits shifted to the right by y places. This is the same as//'ing x by 2**y.
x & y
Does a "bitwise and". Each bit of the output is1if the corresponding bit of x AND of y is1, otherwise it's 0.
x | y
Does a "bitwise or". Each bit of the output is0if the corresponding bit of x AND of y is0, otherwise it's 1.~ x
Returns the complement of x - the number you get by switching each 1for a 0and each 0for a 1. This is the same as-x -1.
x ^ y
Does a "bitwise exclusive or". Each bit of the output is the same as the corresponding bit in x if that bit in y is0,and it's the complement of the bit in x if that bit in y is1.

Ejemplo 2: xor en python

#!/usr/bin/python

a =60# 60 = 0011 1100 
b =13# 13 = 0000 1101 
c =0

c = a & b;# 12 = 0000 1100print"Line 1 - Value of c is ", c

c = a | b;# 61 = 0011 1101 print"Line 2 - Value of c is ", c

c = a ^ b;# 49 = 0011 0001print"Line 3 - Value of c is ", c

c =~a;# -61 = 1100 0011print"Line 4 - Value of c is ", c

c = a <<2;# 240 = 1111 0000print"Line 5 - Value of c is ", c

c = a >>2;# 15 = 0000 1111print"Line 6 - Value of c is ", c

Si eres capaz, eres capaz de dejar una división acerca de qué le añadirías a esta noticia.

¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)



Utiliza Nuestro Buscador

Deja una respuesta

Tu dirección de correo electrónico no será publicada. Los campos obligatorios están marcados con *