Nuestro team de expertos pasados ciertos días de investigación y recopilación de de información, dieron con la solución, esperamos que resulte útil para ti en tu trabajo.
Ejemplo 1: intercambio en python
x =5
y =10
x, y = y, x
print("x =", x)print("y =", y)
Ejemplo 2: código para intercambiar en python
a=5
b=10
a,b=b,a #swapped
Ejemplo 3: intercambiar variables en python
a =5
b =6# now swp the variables
a, b = b, a
# to swap two variables you need an other string harder than the first one
c = a # 5
a = b # 6
b = c # 5
Ejemplo 4: intercambio de variables en python
a =1
b =2
a, b = b, a
# a = 2 , b = 1
Ejemplo 5: números de intercambio de python
# Swap without using any temp variable
x =66
y =77print("Original: ", x,y)
x = x - y
y = x + y
x = y - x
print("Swapped 1st time: ", x,y)
x = x + y
y = x - y
x = x - y
print("Swapped 2nd time: ", x,y)# Output:# Original: 66 77# Swapped 1st time: 77 66# Swapped 2nd time: 66 77
Ejemplo 6: python intercambia dos variables
a =2
b =4print(a)# 2print(b)# 4# Now swap them# Hold one variable in c temporarily:
c = b
b = a
a = c
# Now delete variable c from memory:del c
print(a)# 4print(b)# 2
¡Haz clic para puntuar esta entrada!
(Votos: 0 Promedio: 0)