15 lines
162 B
Python
15 lines
162 B
Python
"""
|
|
python by autoz
|
|
v0.1
|
|
"""
|
|
import os
|
|
|
|
command_list = ['pyim']
|
|
def run(command):
|
|
if command == 'pyim':
|
|
pyim()
|
|
|
|
def pyim():
|
|
os.system('python3')
|
|
|