Write a program for creating an integer array with values belonging to the range 10 and 60
Write a program for creating an integer array with values belonging to the range 10 and 60
题目类型: 技术面试题
这是一道技术面试题,常见于澳洲IT公司面试中。
难度: hard
标签: interviewbit, numpy, topic-specific, python, data-science
参考答案摘要
import numpy as np arr = np.arange(10, 60) print(arr) Output: [10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55...
本题提供 STAR 原则详细解答和技术解析,登录匠人学院学习中心即可查看完整答案。