摘要:
int(2) #整形 float(2) #浮点数字 str(2) #字符串 #字符串相加,将数字转换为字符串 def ul2(x): x2=str(x) #print type(x2),x2 return x2+'33' 执行 ul2(3) 返回 '333' 格式化小数点后两位: a='3.4567 阅读全文
摘要:
#!/usr/bin/python# -*- coding: utf-8 -*-import os#返回脚本所在目录print os.path.split(os.path.realpath(__file__))[0]#返回脚本文件名称print os.path.split(os.path.realp... 阅读全文