gpt4 book ai didi

Python 3.2 - 连接和字符串格式化行为不符合预期

转载 作者:太空狗 更新时间:2023-10-29 22:16:54 25 4
gpt4 key购买 nike

我想从其他几个变量创建一个“完整文件名”变量,但字符串连接和字符串格式操作的行为并不符合我的预期。

我的代码如下:

file_date = str(input("Enter file date: "))

root_folder = "\\\\SERVER\\FOLDER\\"
file_prefix = "sample_file_"
file_extension = ".txt"

print("")
print("Full file name with concatenation: ")
print(root_folder + file_prefix + file_date + file_extension)
print("Full file name with concatenation, without file_extension: ")
print(root_folder + file_prefix + file_date)
print("")

print("")
print("Full file name with string formatting: ")
print("%s%s%s%s" % (root_folder, file_prefix, file_date, file_extension))
print("Full file name with string formatting, without file_extension: ")
print("%s%s%s" % (root_folder, file_prefix, file_date))
print("")

我运行脚本时的输出是:

C:\Temp>python test.py
Enter file date: QT1

Full file name with concatenation:
.txtRVER\FOLDER\sample_file_QT1
Full file name with concatenation, without file_extension:
\\SERVER\FOLDER\sample_file_QT1


Full file name with string formatting:
.txtRVER\FOLDER\sample_file_QT1
Full file name with string formatting, without file_extension:
\\SERVER\FOLDER\sample_file_QT1

我原以为它会在最后连接“.txt”,只是它用它替换了字符串的前四个字符。

如何将扩展变量连接到字符串的末尾,而不是用它替换字符串的前 n 个字符?

除了如何解决这个特定问题之外,我还想知道为什么我会首先遇到它。我做错了什么/我不知道什么 Python 3.2 行为?

最佳答案

我认为您的示例中使用的方法 input 是这样的:

file_date = str(input("Enter file date: "))

最后可能会返回一个回车符。
当您尝试打印出来时,这会导致光标返回到该行的开头。您可能想要修剪 input() 的返回值。

关于Python 3.2 - 连接和字符串格式化行为不符合预期,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/6256369/

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