IDLE in Python (Ubuntu)
To lauch IDLE in the Current Woking Directory
>>> usr/bin/idle3
Alt + n # next command
Alt+p # previous command
>>> import os # os module
>>> os.getcwd() # get Current Working Directory
'/home/kaiming/Documents/Python'
>>> os.chdir('/home/kaiming/Documents/Python/test') # Change DIRectory
>>> os.getcwd()
'/home/kaiming/Documents/Python/test'