Python-需要理解FOR循环

Python-需要理解FOR循环

p我对这个附加的 FOR 循环有点困惑。尤其是之前的字母for

有人可以帮忙吗?

例如 not_searched 是一个模块 not_searched 是一个模块

例如 for 循环突出显示 for 循环突出显示

答案1

它的列表推导。它将列出所有包含字符串“not_searched”的系统路径。理解。

for p in sys.path:
      if 'not_searched' in p:
          print(p)

相关内容