1. 程式人生 > >一些有用的Python指令

一些有用的Python指令

交互模式 import col 命令 輸入 當前 模式 nbsp code

修改IDLE工作路徑,在命令交互模式下輸入如下指令:

>>> import os
>>> os.getcwd() #查看當前的工作路徑
>>> os.chdir(E:\\Python\\Demo) #修改當前的工作路徑

一些有用的Python指令