产生元组的无意尾随逗号

产生元组的无意尾随逗号,第1张

产生元组的无意尾随逗号

pylint
已经将其检测为问题(从1.7版开始)。

例如,这是我的

tuple.py

"""Module docstring to satisfy pylint"""def main():    """The main function"""    thing = 1,    print(type(thing))if __name__ == "__main__":    main()$ pylint tuple.pyNo config file found, using default configuration************* Module tupleR:  5, 0: Disallow trailing comma tuple (trailing-comma-tuple)------------------------------------------------------------------Your pre has been rated at 8.00/10 (previous run: 8.00/10, +0.00)$ pylint --help-msg trailing-comma-tupleNo config file found, using default configuration:trailing-comma-tuple (R1707): *Disallow trailing comma tuple*  In Python, a tuple is actually created by the comma symbol, not by the  parentheses. Unfortunately, one can actually create a tuple by misplacing a  trailing comma, which can lead to potential weird bugs in your pre. You  should always use parentheses explicitly for creating a tuple. This message  belongs to the refactoring checker. It can't be emitted when using Python <  3.0.


欢迎分享,转载请注明来源:内存溢出

原文地址: https://outofmemory.cn/zaji/5644087.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-12-16
下一篇 2022-12-16

发表评论

登录后才能评论

评论列表(0条)

保存