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解释器 
7
>>> a[:3] #
获取从第一个元素到索引为
3
(不包括
3
!)的元素
[1, 2, 3]
>>> a[:-1] #
获取从第一个元素到最后一个元素的前一个元素之间的元素
[1, 2, 3, 4]
>>> a[:-2] #
获取从第一个元素到最后一个元素的前二个元素之间的元素
[1, 2, 3]
进行列表的切片时,需要写成
a[0:2]
这样的形式。
a[0:2]
用于取出从索
引为0 的元素到索引为2的元素的前一个元素之间的元素。另外,索引
1
应最后一个元素,
2 对应最后一个元素的前一个元素。
1.3.5
 字典
列表根据索引,按照0, 1, 2,
...
的顺序存储值,而字典则以键值对的形
式存储数据。字典就像《新华字典》那样,将单词和它的含义对应着存储起来。
>>> me = {'height':180} #
生成字典
>>> me['height'] #
访问元素
180
>>> me['weight'] = 70 #
添加新元素
>>> print(me)
{'height': 180, 'weight': 70}
1.3.6
 布尔型
Python
中有
bool
型。
bool
型取
True
False
中的一个值。针对
bool
型的
运算符包括
and
or
not
(针对数值的运算符有
+
-
*
/
等,根据不同的
数据类型使用不同的运算符)。
>>> hungry = True #
饿了?
>>> sleepy = False #
困了?
>>> type(hungry)
<class 'bool'> ...
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