Swapping ภาษาไพธอน

รหัสตัวอย่าง

13
0

swapping ภาษาไพธอน

x = 5
y = 10

x, y = y, x
print("x =", x)
print("y =", y)
8
0

รหัสที่จะเปลี่ยนภาษาไพธอน

a=5
b=10
a,b=b,a  #swapped 
3
0

swapping ตัวแปรในปลั๊กอินสำหรับไพธอน

a = 1
b = 2

a, b = b, a
# a = 2 , b = 1
2
0

เปลี่ยนตัวแปรในปลั๊กอินสำหรับไพธอน

a = 5
b = 6
# now swp the variables
a, b = b, a
# to swap two variables you need an other string harder than the first one
c = a	# 5
a = b	# 6
b = c	# 5
1
0

ปลั๊กอินสำหรับไพธอนเปลี่ยนฟังก์ชัน

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
1
0

swapping ภาษาไพธอน

a = 10
b = 20
print("not swiped value of a is",a)
print("not swiped value of b is",b)
stored_value = a
a = b
b = stored_value
print("swiped value of a is",a)
print("swiped value of b is",b)

ในภาษาอื่นๆ

หน้านี้อยู่ในภาษาอื่นๆ

Русский
..................................................................................................................
English
..................................................................................................................
Italiano
..................................................................................................................
Polski
..................................................................................................................
Română
..................................................................................................................
한국어
..................................................................................................................
हिन्दी
..................................................................................................................
Français
..................................................................................................................
Türk
..................................................................................................................
Česk
..................................................................................................................
Português
..................................................................................................................
中文
..................................................................................................................
Español
..................................................................................................................
Slovenský
..................................................................................................................
Балгарскі
..................................................................................................................
Íslensk
..................................................................................................................