“intercambio en pitón” Código de respuesta

intercambio en pitón

# 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))
Amused Armadillo

función de intercambio de pitón

def swap0(s1, s2):
    assert type(s1) == list and type(s2) == list
    tmp = s1[:]
    s1[:] = s2
    s2[:] = tmp
    
# However, the easier and better way to do a swap in Python is simply:
s1, s2 = s2, s1
Gorgeous Goshawk

Swap Case Python

t = "Mr.Brown"
nt = t.swapcase()
print(nt)
Silver Takana

rfind () en Python

#Python rfind() method finds a substring in in the string and returns the highest index. It means it returns the index of most righmost matched subtring of the string. It returns -1 if substring not found.
Spotless Spider

Respuestas similares a “intercambio en pitón”

Preguntas similares a “intercambio en pitón”

Más respuestas relacionadas con “intercambio en pitón” en Python

Explore las respuestas de código populares por idioma

Explorar otros lenguajes de código