相关疑难解决方法(0)

如何正确传递要使用 python -c 执行的文字字符串 python 代码

我需要一些帮助来弄清楚如何从 python -c 执行此 python 代码我在格式化 python 时遇到问题,以便它可以在 cmd 中为另一个应用程序执行我知道可能有其他方法可以做我正在做的事情,但我受到限制使用 cmd python -c 最终执行所以请记住这一点。

所以我有一些 python 代码,即

import os
import shutil

myPath =r"C:\dingdongz"
for root, dirs, files in os.walk(myPath):
    for file in files:
        os.remove(os.path(root, file))
    for dir in dirs:
        shutil.rmtree(os.path.join(root,dir))
Run Code Online (Sandbox Code Playgroud)

但我正在尝试使用以下方法执行它,python -c "p​​rint 'hotdogs'"

所以这就是我所拥有的,但没有用

cmdline = "\" import os, shutil \n for root, dirs, files in os.walk("+myPath+"):\n \t for file in files: \n \t \t os.remove(os.path.join(root, file)) \n \t for dir in dirs: \n \t\t shutil.rmtree(os.path.join(root, dir))" 

Windows CMD …
Run Code Online (Sandbox Code Playgroud)

python string cmd literals

1
推荐指数
1
解决办法
3061
查看次数

标签 统计

cmd ×1

literals ×1

python ×1

string ×1