Python知識分享網(wǎng) - 專業(yè)的Python學習網(wǎng)站 學Python,上Python222
計算金融:Python basics and programming(英)PDF 下載
匿名網(wǎng)友發(fā)布于:2024-09-23 09:44:20
(侵權(quán)舉報)
(假如點擊沒反應(yīng),多刷新兩次就OK!)

計算金融:Python basics and programming(英)PDF 下載 圖1

 

 

資料內(nèi)容:

 

The value stored in a variable determines that
variable's type
The type of a variable determines
How the computer stores the data
What operations can be done with it, and
how those operations work
E.g. 4 + 5 returns 9
E.g. "hello" + "world" returns
"helloworld"
Only so much you can do with basic data
types; most code we write will use data
structures
containers that let you store multiple elements of a basic type
(or even of many basic types) in one variable