ValueError: invalid literal for int() with base 10: ''

前端 未结 18 1910
甜味超标
甜味超标 2020-11-22 02:06

I am creating a program that reads a file and if the first line of the file is not blank, it reads the next four lines. Calculations are performed on those lines and then t

18条回答
  •  后悔当初
    2020-11-22 03:07

    The reason is that you are getting an empty string or a string as an argument into int. Check if it is empty or it contains alpha characters. If it contains characters, then simply ignore that part.

提交回复
热议问题