python global 全局变量时间:2023-03-09 23:09:31 http://blog.****.net/mldxs/article/details/8559973 __author__ = 'dell' def func(): global x print 'x is ', x x = 2 print 'Changed local to ', x x = 50 func() print 'Value of x is ', x