notes/Python run system command and save output to variable-Q3z41h9g.py
#!/usr/bin/env python3

import os
tmp = os.popen("ls").read()
print(tmp)

syntax highlighted by Code2HTML, v. 0.9.1