python os.getcwd get working directory

>>> import os
>>> print(os.getpid())
26463
 
 
>>> print(os.getcwd())
/home/test

Guess you like

Origin www.cnblogs.com/xudongliang/p/12467251.html