python如何输入一个数组
Python 中输入数组有两种方法:使用 list() 函数,通过 input() 获取输入,使用 split() 以逗号分隔,再用 list() 转换为数组;使用 numpy.array() 函数,先用 list() 和 split() 处理输入,再用 numpy.array() 转换为 NumPy 数组。
如何用 Python 输入一个数组
在 Python 中,您可以通过多种方法输入一个数组。本文将介绍以下两种最常见的方法:
1. using list() 函数
my_array = list(input("Enter the elements of the array, separated by commas: ").split(","))
2. using numpy.array() 函数
立即学习“Python免费学习笔记(深入)”;
import numpy as npmy_array = np.array(list(input("Enter the elements of the array, separated by spaces: ").split()))
示例:
# 使用 list() 函数my_array = list(input("Enter the elements of the array, separated by commas: ").split(","))print(my_array)# 使用 numpy.array() 函数import numpy as npmy_array = np.array(list(input("Enter the elements of the array, separated by spaces: ").split()))print(my_array)
输入:
1, 2, 3, 4, 52 4 6 8 10
输出:
[1, 2, 3, 4, 5][ 2 4 6 8 10]