以Python 清單的形式存取數位輸入
雖然input() 和raw_input() 可以在Python 中擷取使用者輸入,但它們將其視為預設是一個字串。要直接從使用者輸入中取得數字列表,請考慮以下Pythonic 方法:
a = [int(x) for x in input().split()]
細分:
用法:
# Request a list of numbers from the user numbers = input("Enter a list of numbers (separated by spaces): ") # Parse the input into a list of integers number_list = [int(x) for x in numbers.split()] # Print the length of the list print(len(number_list))
優點:
以上是如何有效地將使用者輸入轉換為 Python 數字列表?的詳細內容。更多資訊請關注PHP中文網其他相關文章!