gpt4 book ai didi

Python ast.Print "nl"参数?

转载 作者:行者123 更新时间:2023-11-28 23:03:21 24 4
gpt4 key购买 nike

根据Python docs , ast.Print 接受一个可选的 bool 值 nl 参数。它有什么用?

最佳答案

它标志着print 'foo'print 'foo', 之间的区别。后者省略了结尾的换行符。

In [1]: import ast

In [2]: ast.dump(ast.parse('print "hi"'))
Out[2]: "Module(body=[Print(dest=None, values=[Str(s='hi')], nl=True)])"

In [3]: ast.dump(ast.parse('print "hi",'))
Out[3]: "Module(body=[Print(dest=None, values=[Str(s='hi')], nl=False)])"

关于Python ast.Print "nl"参数?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8617906/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com