以下命令在python中是否有效?

时间:2014-06-18 03:30:34

标签: python

以下命令在python中是否有效?

if(os.path.isfile("file path") && os.path.isfile("another file path") ) 

2 个答案:

答案 0 :(得分:0)

if os.path.isfile("file path") and os.path.isfile("another file path"):
    do something

将是您问题的正确语法。

答案 1 :(得分:0)

  

这是有效的Python吗?:

if(os.path.isfile("file path") && os.path.isfile("another file path") ) 

不,&&语法无效,并且下一个代码块需要冒号。然而,这将是(并且将是更好的风格):

if os.path.isfile("file path") and os.path.isfile("another file path"):
    # ...