Skip to Content
深度学习入门 : 基于Python的理论与实现
book

深度学习入门 : 基于Python的理论与实现

by 斋藤康毅
July 2018
Intermediate to advanced
310 pages
8h 21m
Chinese
Posts & Telecom Press
Content preview from 深度学习入门 : 基于Python的理论与实现
1.3  Python解释器 
5
>>> 7 / 5
1.4
>>> 3 ** 2
9
*
表示乘法,
/
表示除法,
**
表示乘方(
3**2
3 2 方)。另 外,在
Python
2
.x
中,整数除以整数的结果是整数,比如,7
÷
5 的结果是 1。但在
Python
3.
x
中,整数除以整数的结果是小数(浮点数)。
1.3.2
 数据类型
编程中有数据类型
data type
)这一概念。数据类型表示数据的性质,
有整数、小数、字符串等类型。
Python
中的
type()
函数可以用来查看数据
类型。
>>> type(10)
<class 'int'>
>>> type(2.718)
<class 'float'>
>>> type("hello")
<class 'str'>
根据上面的结果可知,
10
int
类型(整型),
2.718
float
类型(浮点型),
"hello"
str
(字符串)类型。另外,“类型”和“类”这两个词有时用作相同
的意思。这里,对于输出结果
<class 'int'>
,可以将其解释成“
10
int
类(类
)”。
1.3.3
 变量
可以使用
x
y
等字母定义变量
variable
)。此外,可以使用变量进行计算,
也可以对变量赋值。
>>> x = 10 #
初始化
>>> print(x) #
输出
x
10
>>> x = 100 #
赋值
>>> print(x)
100
Become an O’Reilly member and get unlimited access to this title plus top books and audiobooks from O’Reilly and nearly 200 top publishers, thousands of courses curated by job role, 150+ live events each month,
and much more.

Read now

Unlock full access

More than 5,000 organizations count on O’Reilly

AirBnbBlueOriginElectronic ArtsHomeDepotNasdaqRakutenTata Consultancy Services

QuotationMarkO’Reilly covers everything we've got, with content to help us build a world-class technology community, upgrade the capabilities and competencies of our teams, and improve overall team performance as well as their engagement.
Julian F.
Head of Cybersecurity
QuotationMarkI wanted to learn C and C++, but it didn't click for me until I picked up an O'Reilly book. When I went on the O’Reilly platform, I was astonished to find all the books there, plus live events and sandboxes so you could play around with the technology.
Addison B.
Field Engineer
QuotationMarkI’ve been on the O’Reilly platform for more than eight years. I use a couple of learning platforms, but I'm on O'Reilly more than anybody else. When you're there, you start learning. I'm never disappointed.
Amir M.
Data Platform Tech Lead
QuotationMarkI'm always learning. So when I got on to O'Reilly, I was like a kid in a candy store. There are playlists. There are answers. There's on-demand training. It's worth its weight in gold, in terms of what it allows me to do.
Mark W.
Embedded Software Engineer

You might also like

ルールズ・オブ・プログラミング ―より良いコードを書くための21のルール

ルールズ・オブ・プログラミング ―より良いコードを書くための21のルール

Chris Zimmerman, 久富木 隆一
プロダクトマネージャーのしごと 第2版 ―1日目から使える実践ガイド

プロダクトマネージャーのしごと 第2版 ―1日目から使える実践ガイド

Matt LeMay, 永瀬 美穂, 吉羽 龍太郎, 原田 騎郎, 高橋 一貴

Publisher Resources

ISBN: 9787115485588