摘要:
--重启数据库FORCE APPLICATION ALL DB2STOPDB2START --创建数据库CREATE DATABASE mysdedb USING CODESET UTF-8 TERRITORY US COLLATE USING SYSTEM USER TABLESPACE MANA... 阅读全文
摘要:
def func(x): print 'x is', x x = 2 print 'Changed local x to', xx = 50func(x)print 'x is still', x结果:x is 50Changed local x to 2x is still 50... 阅读全文