Python知識分享網(wǎng) - 專業(yè)的Python學習網(wǎng)站 學Python,上Python222
NumPy 1.5 Beginner Guide PDF 下載
發(fā)布于:2023-08-31 10:55:11
(假如點擊沒反應(yīng),多刷新兩次就OK!)

NumPy 1.5 Beginner Guide PDF 下載  圖1

 

 

 

資料內(nèi)容:

 

 

These set practical challenges and give you ideas for experimenting with what you
have learned.
You will also find a number of styles of text that distinguish between different kinds of
information. Here are some examples of these styles, and an explanation of their meaning.
Code words in text are shown as follows: "We can include other contexts through the use
of the include directive."
A block of code is set as follows:
[def pythonsum(n):
a = range(n)
b = range(n)
c = []
for i in range(len(a)):
a[i] = i ** 2
b[i] = i ** 3
c.append(a[i] + b[i])
return c
When we wish to draw your attention to a particular part of a code block, the relevant lines
or items are set in bold:
[def pythonsum(n):
a = range(n)
b = range(n)
c = []
for i in range(len(a)):
a[i] = i ** 2
b[i] = i ** 3
c.append(a[i] + b[i])
return c
Any command-line input or output is written as follows: