作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要将 .txt
文件中的常量名称及其相应的值
提取到字典
中。其中key = NameOfConstants
和Value=float
。
文件
的开头如下所示:
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
如何轻松获取常量的名称
?
这是我的尝试:
with open('constants.txt', 'r') as infile:
file1 = infile.readlines()
constants = {i.split()[0]: i.split()[1] for i in file1[2:]}
我的 split()
不太正确,我需要一点修正!
最佳答案
{' '.join(line.split()[:-2]):' '.join(line.split()[-2:]) for line in lines}
关于python - 如何将变化的数据读入字典?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/34853933/
我是一名优秀的程序员,十分优秀!