Python 中的否定
如果路径不存在,我尝试创建一个目录,但是 ! (不)运算符不起作用。我不知道如何在 Python 中进行否定...正确的方法是什么?
if (!os.path.exists("/usr/share/sounds/blues")):
proc = subprocess.Popen(["mkdir", "/usr/share/sounds/blues"])
proc.wait()
I'm trying to create a directory if the path doesn't exist, but the ! (not) operator doesn't work. I'm not sure how to negate in Python... What's the correct way to do this?
if (!os.path.exists("/usr/share/sounds/blues")):
proc = subprocess.Popen(["mkdir", "/usr/share/sounds/blues"])
proc.wait()
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(4)
尝试改为:
try instead:
结合其他人的输入(不使用,不使用括号,使用 os.mkdir ),你会得到......
Combining the input from everyone else (use not, no parens, use
os.mkdir
) you'd get...Python 中的否定运算符是
not
。因此,只需将!
替换为not
即可。对于您的示例,请执行以下操作:
对于您的具体示例(正如尼尔在评论中所说),您不必使用
subprocess
模块,您只需使用os.mkdir()
获得您需要的结果,并添加异常处理的优点。例子:
The negation operator in Python is
not
. Therefore just replace your!
withnot
.For your example, do this:
For your specific example (as Neil said in the comments), you don't have to use the
subprocess
module, you can simply useos.mkdir()
to get the result you need, with added exception handling goodness.Example:
Python 更喜欢英文关键字而不是标点符号。使用
not x
,即not os.path.exists(...)
。同样的情况也适用于&&
和||
,它们是 Python 中的and
和or
。Python prefers English keywords to punctuation. Use
not x
, i.e.not os.path.exists(...)
. The same thing goes for&&
and||
which areand
andor
in Python.