Python拆分功能和存储值

时间:2016-11-25 18:34:33

标签: python split

我有一个txt文件,内容如下:

android {
    compileSdkVersion 24
    buildToolsVersion = '24.0.1'
}

我正在尝试拆分每一行,以便将数字转换为整数并使用数字来查找平均成绩。我遇到了将字符串拆分为' ,'并存储我分成2个不同变量的2个部分。

以下是我认为代码的主要部分:

math,89
history,90
history,94

抱歉忘了添加我收到的错误:def main(): total = 0 count = 0 myfile = open('grades.txt','r') for line in myfile: array = line.split(",") course = array[0] amount = float(array[1]) total += amount myfile.close()

0 个答案:

没有答案