我需要從.txt file
中提取常量的名稱及其相應的values
爲dictionary
。其中key = NameOfConstants
和Value=float
。如何將變量數據讀入字典?
的file
的開始是這樣的:
speed of light 299792458.0 m/s
gravitational constant 6.67259e-11 m**3/kg/s**2
Planck constant 6.6260755e-34 J*s
elementary charge 1.60217733e-19 C
我如何獲得的常量容易的name
?
這是我的嘗試:
with open('constants.txt', 'r') as infile:
file1 = infile.readlines()
constants = {i.split()[0]: i.split()[1] for i in file1[2:]}
我不對與split()
得到它,我需要一點點的修正!
是你的「constantts」與製表符分隔?如果是,stdlib的'csv'模塊就是你的朋友。 –
不,他們是經常性的空間。 – Thomas
uhu,這很糟糕......這應該是最終用戶可編輯的配置文件嗎? –