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章 Python 入门
10
print("I'm hungry!")
接着,打开终端(
Windows
中的命令行窗口),移至
hungry.py
所在的位置。
然后,将
hungry.py
文件名作为参数,运行
python
命令。这里假设
hungry.
py
~/deep-learning-from-scratch/ch01
目录下(在本书提供的源代码中,
hungry.py
文件位于
ch01
目录下)。
$ cd ~/deep-learning-from-scratch/ch01 #
移动目录
$ python hungry.py
I'm hungry!
这样,使用
python hungry.py
命令就可以执行这个
Python
程序了。
1.4.2
 类
前面我们了解了
int
str
等数据类型(通过
type()
函数可以查看对象的
类型)。这些数据类型是“内置”的数据类型,是
Python
中一开始就有的数
据类型。现在,我们来定义新的类。如果用户自己定义类的话,就可以自己
创建数据类型。此外,也可以定义原创的方法(类的函数)和属性。
Python
中使用
class
关键字来定义类,类要遵循下述格式(模板)。
class
类名:
def __init__(self,
参数
,
): #
构造函数
...
def
方法名
1(self,
参数
,
): #
方法
1
...
def
方法名
2(self,
参数
,
): #
方法
2
...
这里有一个特殊的
__init__
方法,这是进行初始化的方法,也称为构造
函数
constructor ...
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