题解 | #牛客年会#
牛客年会
https://www.nowcoder.com/practice/457c4e479c014c9fa09b9560aebd35af
import numpy as np seat = np.loadtxt("Nowcoder.csv", delimiter=",",dtype = int) print(seat[:, 1]) print(seat[5, 4:9])
牛客年会
https://www.nowcoder.com/practice/457c4e479c014c9fa09b9560aebd35af
import numpy as np seat = np.loadtxt("Nowcoder.csv", delimiter=",",dtype = int) print(seat[:, 1]) print(seat[5, 4:9])
相关推荐