“Python échange deux nombres” Réponses codées

Programme Python pour échanger la position de deux nombres

#program to swap indexes of present to succedinng one or viceversa
list=eval(input("enter a list"))
print(list)
a=len(list)
if a%2!=0:
    a=a-1
for i in range(0,a,2):
    list[i],list[i+1]=list[i+1],list[i]
print("swapped position and the list is",list)
Gr@Y_orphan_ViLL@in##

Python échange deux nombres

def swap(a, b):
  a = a + b
  b = a - b
  a = a - b
  return a, b
mieyang mie

Python échange deux éléments

a = 1
b = 2
# Swap a and b
a, b = b, a
Serious Panda

Python échange deux nombres

pos1, pos2  = 1, 3
Serious Panda

comment échanger les nombres en python mathématiquement

def swap_by_temp_var(num1,num2):
    temp = num1
    num1 = num2
    num2 = temp
    return num1, num2
def swap_by_mathamatically(num1,num2):
    num1 = num1 + num2
    num2 = num1-num2
    num1 = num1-num2
    return num1, num2
print(swap_by_temp_var(100,80))
print(swap_by_mathamatically(100,80))
Programmer of empires

Réponses similaires à “Python échange deux nombres”

Questions similaires à “Python échange deux nombres”

Plus de réponses similaires à “Python échange deux nombres” dans Python

Parcourir les réponses de code populaires par langue

Parcourir d'autres langages de code