Estou criando um programa que lê um arquivo e, se a primeira linha do arquivo não estiver em branco, ele lerá as próximas quatro linhas. Os cálculos são realizados nessas linhas e, em seguida, a próxima linha é lida. Se essa linha não estiver vazia, ela continua. No entanto, estou recebendo este erro:
ValueError: invalid literal for int() with base 10: ''.
Está lendo a primeira linha, mas não pode convertê-la em um número inteiro.
O que posso fazer para corrigir esse problema?
O código:
file_to_read = raw_input("Enter file name of tests (empty string to end program):")
try:
infile = open(file_to_read, 'r')
while file_to_read != " ":
file_to_write = raw_input("Enter output file name (.csv will be appended to it):")
file_to_write = file_to_write + ".csv"
outfile = open(file_to_write, "w")
readings = (infile.readline())
print readings
while readings != 0:
global count
readings = int(readings)
minimum = (infile.readline())
maximum = (infile.readline())
with open(file_to_read, 'r') as infile:
lá.