摘要:
umount /tmp/ops-deploy-api/ umount.nfs4: /tmp/ops-deploy-api: device is busy 解决: umount -lf /tmp/ops-deploy-api/ How to directly mount NFS share/volum 阅读全文
摘要:
Return an enumerate object. sequence must be a sequence, an iterator, or some other object which sup- ports iteration. The next() method of the iterat 阅读全文
摘要:
如果列表T是a.py中是全局的,则直接调用即可,例如 #a.py T = [1,2,3,4] def test(): print("hello world!") #b.py import a def test(): for i in a.T: print i 运行b.py中test函数,将会输出a中 阅读全文