Files
miyaliu666 3ea2fe4f77 feat(i18n,curriculum): add Bilibili ids for Chinese (#43564)
Co-authored-by: Kristofer Koishigawa <scissorsneedfoodtoo@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2021-10-01 09:54:12 +05:30

506 B

id, title, challengeType, videoId, bilibiliIds, dashedName
id title challengeType videoId bilibiliIds dashedName
5e9a0a8e09c5df3cc3600ed3 Basics of Numpy 11 f9QrZrKQMLI
aid bvid cid
763014202 BV1K64y1a7bu 409025169
basics-of-numpy

--question--

--text--

What will the following code print?

b = np.array([[1.0,2.0,3.0],[3.0,4.0,5.0]])
print(b)

--answers--

[[1.0 2.0 3.0]
[3.0 4.0 5.0]]

[[1. 2. 3.]
[3. 4. 5.]]

[[1. 3.]
[2. 4.]
[3. 5.]

--video-solution--

2