“Функция обмена Python” Ответ

обмен на питоне

# 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

Функция обмена Python

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

Смена корпуса Python

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

Ответы похожие на “Функция обмена Python”

Вопросы похожие на “Функция обмена Python”

Больше похожих ответов на “Функция обмена Python” по Python

Смотреть популярные ответы по языку

Смотреть другие языки программирования