我有点困惑,为什么2to3
会困扰我已经采用功能样式的打印参数,以将其包装在一组额外的括号中。例如
print("\t[Warn] Can not connect {}".format(ssid))
变成
print(("\t[Warn] Can not connect {}".format(ssid)))
这些本质上是保守的假阳性吗?我在想,也许format函数中的结尾
)
抛出了它的逻辑。 最佳答案
从文档中
2to3 Docs
关于Python 2to3在函数参数周围添加了额外的括号,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/49020649/