mirror of
https://github.com/autistic-symposium/master-algorithms-py.git
synced 2025-04-29 20:26:07 -04:00
9 lines
123 B
Python
9 lines
123 B
Python
#!/usr/bin/env python
|
|
|
|
__author__ = "bt3"
|
|
|
|
import subprocess,os
|
|
|
|
os.system('ls')
|
|
subprocess.call(['ls', '-1'], shell=True)
|