通过 input() 函数获取用户键盘输入,使用 split(',') 将输入按逗号分隔成列表,最后用 np.array() 将列表转换为 numpy 数组。
用 Python 从键盘输入数组
如何用 Python 从键盘输入数组?
使用 Python 的 input()
函数,您可以从键盘获取用户输入的数组。
详细步骤:
- 导入
numpy
库:
<code class="<a style='color:#f60; text-decoration:underline;' href=" https: target="_blank">python">import numpy as np</code>
- 使用
input()
获取用户的输入:
<code class="python">user_input = input("请输入数组元素,用逗号分隔:")</code>
- 将用户输入的字符串转换为列表:
<code class="python">user_list = user_input.split(',')</code>
- 使用
numpy.array()
将列表转换为 NumPy 数组:
<code class="python">array = np.array(user_list, dtype=int)</code>
示例代码:
<code class="python">import numpy as np
user_input = input("请输入数组元素,用逗号分隔:")
user_list = user_input.split(',')
array = np.array(user_list, dtype=int)
print(array)</code>
输出:
<code>[1 2 3 4 5]</code>
以上就是python怎么从键盘输入数组的详细内容,更多请关注编程网其它相关文章!