1. 程式人生 > >linux os.listdir() NameError: name 'os' is not defined

linux os.listdir() NameError: name 'os' is not defined

從網上摘了一下小測試,向下面這樣

print(os.system('ping xingfushenghuo.com'))

然後報錯了:NameError: name 'os' is not defined

解決方法就是:

import os

print(os.system('ping xingfushenghuo.com'))

注:還有一點需要注意的,我使用的python版本是3.3以上的,所以print 後只能加()(括號)