gpt4 book ai didi

python - print() 没有连接成一个字符串

转载 作者:太空宇宙 更新时间:2023-11-03 13:19:58 27 4
gpt4 key购买 nike

我正在做以下事情:

print( 'Sent email', i+1 )

但是,它并没有像我期望的那样打印 Sent email 1,而是打印了一个列表:

('Sent email', 1)

为什么不将两个参数连接成一个字符串?

编辑:我在 Windows 上使用 Python 3.3.2

>>> import sys;print(sys.version)
3.3.2 (v3.3.2:d047928ae3f6, May 16 2013, 00:06:53) [MSC v.1600 64 bit (AMD64)]

最佳答案

print 是py2.x中的语句:

>>> i =0
>>> print 'Sent email', i+1
Sent email `1

在它周围添加 () 实际上会打印一个元组。

你也可以导入py3.x的print函数:

>>> from __future__ import print_function
>>> print ('Sent email', i+1)
Sent email 1

关于python - print() 没有连接成一个字符串,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/17330275/

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