Latest web development tutorials

Python includes exercises 47

Python 100 Li Python 100 Li

Title: two variable values are interchangeable.

Program Analysis: None

Source Code:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

def exchange(a,b):
    a,b = b,a
    return (a,b)

if __name__ == '__main__':
    x = 10
    y = 20
    print 'x = %d,y = %d' % (x,y)
    x,y = exchange(x,y)
    print 'x = %d,y = %d' % (x,y)

The above example output is:

x = 10,y = 20
x = 20,y = 10

Python 100 Li Python 100 Li