Python Trick

·24 字·1 分钟
Python python trick re
n3xtchen
作者
n3xtchen
Sharing Funny Tech With You

空白处理 #

去除字符中的所有空格 #

_string     = ' 88 11 10 '
print   "".join(_string.split())    # 结果是 881110

文件路径 #

脚本文件所在的目录 #

import os
print os.path.dirname(__file__)