Python很多時候要從鍵盤連續輸入一個數組,並用空格隔開

Python要從鍵盤連續輸入一個數組,並用空格隔開,Python中的實現方法如下: str = input(‘以空格爲間隔連續輸入一個數組:’) 然後在鍵盤中輸入,會·得到的str爲一個字符串,要將其轉爲一個列表有兩種方法 方法一: a = [int(n) for n in str_in.split()] 方法二: a = list(map(int, str.strip().split())) 輸
相關文章
相關標籤/搜索