将5 <--> 34 <--> 35 <--> 36 <--> 66 <--> 321 <--> 321 <--> 325 <--> 532 <--> 1443的最开始的5和最后的1443用<和-连接起来用Python怎么实现
时间: 2023-08-10 13:02:47 浏览: 163
python 将字符串中的数字相加求和的实现
您可以使用Python的字符串拼接功能来连接这两个数字。以下是示例代码:
```
start = 5
end = 1443
result = "<".join([str(start), str(end)])
result = "-" + result + "-"
print(result)
```
输出将会是:`-5<1443-`
阅读全文