“Cómo hacer intercambio en Python sin” Código de respuesta

Cómo hacer intercambio en Python sin función de clasificación


# Python3 code to swap using XOR
 
x = 10
y = 5
 
# Code to swap 'x' and 'y'
x = x ^ y; # x now becomes 15 (1111)
y = x ^ y; # y becomes 10 (1010)
x = x ^ y; # x becomes 5 (0101)
 
print ("After Swapping: x = ", x, " y =", y)
android developer

Cómo hacer intercambio en Python sin función de clasificación

# Python3 program to
# swap two numbers
# without using
# temporary variable
x = 10
y = 5
 
# code to swap
# 'x' and 'y'
 
# x now becomes 50
x = x * y
 
# y becomes 10
y = x // y;
 
# x becomes 5
x = x // y;
 
print("After Swapping: x =",
              x, " y =", y);
android developer

Cómo hacer intercambio en Python sin

def swap(xp, yp):
 
    xp[0] = xp[0] ^ yp[0]
    yp[0] = xp[0] ^ yp[0]
    xp[0] = xp[0] ^ yp[0]
 
 
# Driver code
x = [10]
swap(x, x)
print("After swap(&x, &x): x = ", x[0])
android developer

Respuestas similares a “Cómo hacer intercambio en Python sin”

Preguntas similares a “Cómo hacer intercambio en Python sin”

Más respuestas relacionadas con “Cómo hacer intercambio en Python sin” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código