读取文件的没一行,然后找到‘//’的位置,用python的切片功能就可以了
a=open(a.txt)b=a.readline()if '//' in b:b=b[:index(//)]a.close()