Python 3 學習筆記之——標準庫概述

1. 操作系統接口 os 模塊提供了一些與操作系統相關聯的函數。 >>> os.getcwd() # 獲取當前工作目錄 '/home/senius' >>> os.chdir('./Downloads') # 更改當前工作目錄 >>> os.getcwd() '/home/senius/Downloads' >>> os.system('ls') # 運行系
相關文章
相關標籤/搜索