Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
os.system(sys.executable+" "+sys.prefix+"/bin/"+arg)
これは、qpython for android に付属する pip コンソール アプリの一部です。
これはよりpythonicだと思いますが、まだ何かが必要です。
def modcmd(arg): exe = sys.executable + ' ' prefix = sys.prefix + '/bin/' cmd = exe + prefix + arg os.system('clear') os.system(cmd)