python函数库
一、调用其他程序(Call other programs)
方法(method) | 例子(example) | 来源(from) | 详细/功能(detail) | 备注(remark) |
os.system(str) |
cmd = r'cd E:' os.system(cmd) |
import os | 调用cmd语句 | |
strip(str) | test.strip() | python | 移除_字符串_头/尾指定的字符(默认为空格或换行符) | |
os.startfile(str_filepath) | import os | 打开_指定路径下的文件 | ||
二、