Python Coding

Publicado em: 29 Julho 2024
no canal de: Work With Python
246
like

Python program to swap two variables

x = 5
y = 10

To take inputs from the user
#x = input('Enter value of x: ')
#y = input('Enter value of y: ')

create a temporary variable and swap the values
temp = x
x = y
y = temp

print('The value of x after swapping: {}'.format(x))
print('The value of y after swapping: {}'.format(y))


Nesta página do site você pode assistir ao vídeo on-line Python Coding duração hora minuto segundo em boa qualidade , que foi baixado pelo usuário Work With Python 29 Julho 2024, compartilhe o link com seus amigos e conhecidos, no youtube este vídeo já foi visto 246 vezes e gostou like espectadores. Boa visualização!