Python将新行拆分为列表

时间:2016-05-19 00:38:19

标签: python-3.x

我正在尝试将新行拆分为列表(没有运气)我的代码处理只有第一行输入其他行仍然被忽略...

我的代码

test = input("enter the case: ")

for test2 in test.split("/n"):
    test2 = test2.replace(" ", "")
    test2 = test2.replace(' ', '')
    test2 = list(test2)
    test2 = [int(i) for i in test2]
    print(test2)

    ans = 0
    for tes in test2[::2]:
        ans = (tes * 2)+ans
    for tes in test2[1::2]:
        ans = tes + ans

    if(ans%10==0):
        print("Real")
    else:
        print("Fake")

我的输入

1463 2372 5177 5080
5573 2395 5129 6315
0818 6626 6167 3009
2199 2359 2569 0736
3480 7343 5514 8613
5168 0377 0687 1070

并且像我提到我的代码处理只有第一行输入但我需要代码处理所有输入行。

0 个答案:

没有答案