标签:__init__ single 多行 构造 test 文件 core 单元素 host
print("""Usage: thingy [OPTIONS] -h -H hostname """) Usage: thingy [OPTIONS] -h -H hostname
singleton = ‘hello‘, >>> singleton (‘hello‘,)
>>> dict([(‘sape‘, 4139), (‘guido‘, 4127), (‘jack‘, 4098)]) {‘sape‘: 4139, ‘jack‘: 4098, ‘guido‘: 4127}
class Student(object): def __init__(self, name, score): self.__name = name self.__score = scor def print_score(self): print(‘%s: %s‘ % (self.__name, self.__score))
os.getcwd() = os.path.abspath(‘.‘) # 查看当前目录的绝对路径 os.chdir() #更改当前目录 os.path.join(‘/Users/michael‘, ‘testdir‘)# 在某个目录下创建一个新目录,首先把新目录的完整路径表示出来 os.mkdir(‘/Users/michael/testdir‘)# 然后创建一个目录 os.listdir(‘.‘) = glob.glob(‘*‘) glob.glob(‘*.py‘) list能用‘.‘表示cwd, 但是global不能 >>> os.path.split(‘/Users/michael/testdir/file.txt‘) (‘/Users/michael/testdir‘, ‘file.txt‘) >>> os.path.splitext(‘/path/to/file.txt‘) (‘/path/to/file‘, ‘.txt‘) os.rename(‘test.txt‘, ‘test.py‘) # 对文件重命名 os.remove(‘test.py‘) # 删掉文件 os.path.isdir(x) os.path.isfile(x) os.path.realpath(path) #返回path的真实路径 os.path.relpath(path,start) #从start开始计算相对路径
标签:__init__ single 多行 构造 test 文件 core 单元素 host
原文地址:http://www.cnblogs.com/P3nguin/p/7670075.html