我想使用python从属性文件中读取属性值
我有一个具有以下内容的属性文件:
month=september
year=2018
使用python,我想从属性文件中读取特定属性的值,我想使用键(月)读取月的值(9月)。例如,在ANT中,我们可以使用$ {month}读取此类内容。同样,我们如何在python中读取此类属性值。
import sys
file1 = open("Myproduct.properties","r+")
print("Output of Read function is: ")
print()
print(file1.read())
我对python完全陌生,请提供输入。