随笔分类 - python
摘要: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...
阅读全文
摘要:注释:单行注释 #多行注释''' '''注意:当注释中有汉字时需要在python文件的第一行添加如下内容之一:#coding:gbk或#coding:utf-8或##-*- coding : gbk -*-hello world python:#coding:utf-8'''Created on ...
阅读全文