,可以通过以下步骤完成:
# 声明并初始化两个字符串变量
str1 = "Hello, world!"
str2 = "I am a developer."
# 将变量写入文本文件
with open("strings.txt", "w") as file:
file.write(str1 + "\n")
file.write(str2 + "\n")
上述代码将字符串变量str1
和str2
分别写入名为strings.txt
的文本文件中。每个字符串都以换行符\n
结束,以便在读取文件时能够区分两个字符串。
# 读取文本文件中的字符串
with open("strings.txt", "r") as file:
lines = file.readlines()
str1 = lines[0].rstrip("\n")
str2 = lines[1].rstrip("\n")
# 打印读取的字符串
print("String 1:", str1)
print("String 2:", str2)
上述代码通过打开名为strings.txt
的文本文件,并逐行读取其中的字符串。读取的字符串存储在lines
列表中,然后可以从列表中获取每个字符串,并将其存储在相应的变量(str1
和str2
)中。在打印输出中,可以验证读取的字符串是否正确。
这是一种基本的方法来将字符串存储在文本文件中的独立变量中。根据具体需求,还可以使用其他编程语言或工具来实现类似的功能。
领取专属 10元无门槛券
手把手带您无忧上云