python-資料交換

天子骄龙發表於2024-07-26

a=10
b=20
a, b = b, a   #資料交換
print(a, b)

#a, b, c, d = d, c, b, a

相關文章