python读取文件空格分割_如何使用Python 3中的readlines读取由空格分隔的整数输入文件?...

我需要读取一个包含一行整数(13 34 14 53 56 76)的输入文件(input.txt),然后计算每个数字的平方和.

这是我的代码:

# define main program function

def main():

print("\nThis is the last function: sum_of_squares")

print("Please include the path if the input file is not in the root directory")

fname = input("Please enter a filename : ")

sum_of_squares(fname)

def sum_of_squares(fname):

infile = open(fname, 'r')

sum2 = 0

for items in infile.readlines():

items = int(items)

sum2 += items**2

print("The sum of the squares is:", sum2)

infile.close()

# execute main program function

main()

如果每个数字都在它自己的行上,它可以正常工作.

但是,当所有数字都在一个由空格分隔的行上时,我无法弄清楚如何做到这一点.在这种情况下,我收到错误:ValueError:基数为10的int()的无效文字:’13 34 14 53 56 76′

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值