**已关闭。**此问题需要debugging details。当前不接受答案。
编辑问题以包含desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem。这将有助于其他人回答问题。
3小时前关门。
Improve this question
I tried everything I could but somehow it still doesnt work can anyone help?
3条答案
按热度按时间vsdwdz231#
我们可以简单地通过...将字符串与整数相加。
使用str()函数。我们可以将一个int传递给str()函数,它将被转换为str:print(current_year_message + str(current_year))...使用%插值运算符。我们可以使用printf样式的字符串格式将值传递给转换规范:...使用str.format()函数
yruzcnhs2#
当使用
input
函数阅读输入时,它将返回一个字符串。要将该字符串转换为整数,可以使用int()
函数,如下所示:但是您必须小心,因为当
number_one
不是数字,而是"Hello!"
这样的通用字符串时,这将产生错误iklwldmw3#
正确写入
number_one
如下:在第一行,它应该如下所示:
你的print语句有错误的连接,你不能把
str
添加到int
,所以我建议使用f-string
或者把所有print语句中的第一个+
改为,
。例如: