1
first = 'a'
second = 1
third = 'c'

我希望结果是“a1c”,只使用第一、第二和第三个变量,并且只使用字符串连接。

我将如何实现这一目标。?

4

2 回答 2

0

您可以简单地说output = first+str(second)+third 这是如何在 Python 中连接字符串和数字?

于 2012-11-17T09:34:58.103 回答
0

你可以试试"{}{}{}".format(first, second, third)

请参阅字符串格式文档

于 2012-11-17T10:07:30.413 回答