为了账号安全,请及时绑定邮箱和手机立即绑定

关于Python中判断语句的使用

关于Python中判断语句的使用

繁花不似锦 2019-02-19 19:25:36
我写了一个方法,如下: file = None for f in os.listdir(os.getcwd()): if os.path.splitext(f)[1] == '.*' and os.path.splitext(f)[0] == os.getenv('') or 'text': file = f return file 期望是,如果文件不存在,返回None,实际返回了__pycache__。 我修改了方法,如下: file = None for f in os.listdir(os.getcwd()): if os.path.splitext(f)[1] == '.*': if os.path.splitext(f)[0] == os.getenv('') or 'text': file = f return file 这样就能返回期望值None。 请问是为什么?
查看完整描述

1 回答

?
汪汪一只猫

TA贡献1898条经验 获得超8个赞

and 优先级高于 or

你的第一个方法稍作修改,

file = None
for f in os.listdir(os.getcwd()):
    if os.path.splitext(f)[1] == '.*' and (os.path.splitext(f)[0] == os.getenv('') or 'text'):
        file = f
return file

应该就符合你的预期了.

查看完整回答
反对 回复 2019-03-01
  • 1 回答
  • 0 关注
  • 528 浏览
慕课专栏
更多

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信