Python知识分享网 - 专业的Python学习网站 学Python,上Python222
计算金融:Python basics and programming(英)PDF 下载
匿名网友发布于:2024-09-23 09:44:20
(侵权举报)
(假如点击没反应,多刷新两次就OK!)

计算金融:Python basics and programming(英)PDF 下载 图1

 

 

资料内容:

 

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