Python Module shutil

From NovaOrdis Knowledge Base
Revision as of 03:19, 19 January 2022 by Ovidiu (talk | contribs) (→‎Overview)
Jump to navigation Jump to search

External

Internal

Overview

Organizatorium

<syntaxhighlight lang='python'> from shutil import which for i in m:

 print("{:20}{:7}".format(m[i], "OK" if which(i) else "missing"))

</syntaxhighlight lang='python'>