1. 程式人生 > >Python2.7在一行輸入多個數字

Python2.7在一行輸入多個數字

輸入一個數字 m = int(raw_input())

輸入兩個數字是 m, n = map(int, raw_input().split())

三個及三個以上類似:

 a, b, c = map(int, raw_input().split())

 a, b, c, d = map(int, raw_input().split())


連續輸入,類似while(cin>>)

while true:

    try:

       s=raw_input()

   execpt:

       break;