Objectivo
Desarrollar un programa Python con una función llamada "swap" para intercambiar los valores de dos variables enteras, que se pasan por referencia.
Por ejemplo:
x = 5 y = 3 swap(x, y) print(f"x={x}, y={y}") (que debería imprimir "x=3, y=5")
Ejemplo Ejercicio Python
Mostrar Código Python
# Define the function swap which swaps the values of two elements in a list
def swap(nums):
nums[0], nums[1] = nums[1], nums[0] # Swap the first and second elements
# Main function to test the swap function
def main():
# Create a list with two integers (5 and 3)
nums = [5, 3]
# Call the swap function to exchange the values of the two numbers
swap(nums)
# Print the swapped values
print(f"x={nums[0]}, y={nums[1]}")
# Call the main function to execute the program
main()
Output
x=3, y=5
Código de Ejemplo copiado
Comparte este ejercicios Python