gpt4 book ai didi

string - Python连接一个字符串和一个变量

转载 作者:行者123 更新时间:2023-12-05 03:11:36 27 4
gpt4 key购买 nike

我正在尝试连接字符串和变量,我看到添加了新行..

def convert_hostname(row_rack,ru_host,orig_hostname):
if orig_hostname[0:9] == "ll21l01ms":
print row_rack,
print ru_host,
temp_var = "ll21l01ls-" + row_rack + ru_host + ".com"
print temp_var

Output when run :
0707
49
ll21l01ls-0707
49
.com

当我尝试打印 temp_var 时,它会在连接期间添加新行。

with 的输出应该是这样的:

0707
49
ll21l01ls-070749.com

有什么想法吗?

最佳答案

尝试:

temp_var = "ll21l01ls-" + row_rack.strip() + ru_host.strip() + ".com"

关于string - Python连接一个字符串和一个变量,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36671236/

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