标签:sp on 文件 bs 代码 ef nbsp python br
新建文件如:test.py
用文档编辑器打开文件,函数代码如下
#coding=utf-8
def my_abs(y):
if y > 0:
return y
else:
return -y
print my_abs(-10)
其中#coding=utf-8为文档编码的定义,文档格式保存为utf-8
输入命令 python test.py 即可测试
标签:sp on 文件 bs 代码 ef nbsp python br
原文地址:http://www.cnblogs.com/chengxy/p/4139652.html