随笔分类 -  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... 阅读全文
posted @ 2014-06-06 16:19 自行车上的程序员 阅读(320) 评论(0) 推荐(0) 编辑
摘要:注释:单行注释 #多行注释''' '''注意:当注释中有汉字时需要在python文件的第一行添加如下内容之一:#coding:gbk或#coding:utf-8或##-*- coding : gbk -*-hello world python:#coding:utf-8'''Created on ... 阅读全文
posted @ 2014-06-06 14:50 自行车上的程序员 阅读(358) 评论(0) 推荐(0) 编辑