Files
freeCodeCamp/curriculum/challenges/korean/08-data-analysis-with-python/numpy/basics-of-numpy.md
camperbot 7a0d396180 chore(i18n,learn): processed translations (#53415)
Co-authored-by: Naomi Carrigan <nhcarrigan@gmail.com>
Co-authored-by: Oliver Eyton-Williams <ojeytonwilliams@gmail.com>
2024-02-13 18:31:01 +01:00

514 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--

다음 코드는 무엇을 출력하나요?

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