語系/ Language:
繁體中文
English
KMU OLIS
登入
回首頁
切換:
標籤
|
MARC模式
|
ISBD
Python crash course: a hands-on, pro...
~
Matthes, Eric, (1972-)
Python crash course: a hands-on, project-based introduction to programming/
紀錄類型:
書目-語言資料,印刷品 : Monograph/item
正題名/作者:
Python crash course: / Eric Matthes.
其他題名:
a hands-on, project-based introduction to programming/
作者:
Matthes, Eric,
出版者:
San Francisco, CA: No Starch Press, Inc., : 2019,
版本:
2nd edition.
面頁冊數:
1 online resource
附註:
Includes index.
提要註:
Second edition of the best selling Python book in the world. A fast-paced, no-nonsense guide to programming in Python. This book teaches beginners the basics of programming in Python with a focus on real projects. This is the second edition of the best selling Python book in the world. Python Crash Course, 2nd Edition is a straightforward introduction to the core of Python programming. Author Eric Matthes dispenses with the sort of tedious, unnecessary information that can get in the way of learning how to program, choosing instead to provide a foundation in general programming concepts, Python fundamentals, and problem solving. Three real world projects in the second part of the book allow readers to apply their knowledge in useful ways. Readers will learn how to create a simple video game, use data visualization techniques to make graphs and charts, and build and deploy an interactive web application. Python Crash Course, 2nd Edition teaches beginners the essentials of Python quickly so that they can build practical programs and develop powerful programming techniques.
標題:
COMPUTERS / Programming Languages / Python. -
電子資源:
http://er.kmu.edu.tw/er/accounts/login/?next=/er/geter/EB000121624/
ISBN:
1593279299
Python crash course: a hands-on, project-based introduction to programming/
Matthes, Eric,1972-
Python crash course:
a hands-on, project-based introduction to programming/ Eric Matthes. - 2nd edition. - San Francisco, CA: No Starch Press, Inc., 2019 - 1 online resource
Includes index.
Intro; Brief Contents; Contents in Detail; Preface to the Second Edition; Acknowledgments; Introduction; Who Is This Book For?; What Can You Expect to Learn?; Online Resources; Why Python?; Part I: Basics; Chapter 1: Getting Started; Setting Up Your Programming Environment; Python Versions; Running Snippets of Python Code; About the Sublime Text Editor; Python on Different Operating Systems; Python on Windows; Python on macOS; Python on Linux; Running a Hello World Program; Configuring Sublime Text to Use the Correct Python Version; Running hello_world.py; Troubleshooting
Second edition of the best selling Python book in the world. A fast-paced, no-nonsense guide to programming in Python. This book teaches beginners the basics of programming in Python with a focus on real projects. This is the second edition of the best selling Python book in the world. Python Crash Course, 2nd Edition is a straightforward introduction to the core of Python programming. Author Eric Matthes dispenses with the sort of tedious, unnecessary information that can get in the way of learning how to program, choosing instead to provide a foundation in general programming concepts, Python fundamentals, and problem solving. Three real world projects in the second part of the book allow readers to apply their knowledge in useful ways. Readers will learn how to create a simple video game, use data visualization techniques to make graphs and charts, and build and deploy an interactive web application. Python Crash Course, 2nd Edition teaches beginners the essentials of Python quickly so that they can build practical programs and develop powerful programming techniques.
ISBN: 1593279299Subjects--Topical Terms:
479364
COMPUTERS / Programming Languages / Python.
Index Terms--Genre/Form:
228523
Electronic books.
Python crash course: a hands-on, project-based introduction to programming/
LDR
:05145cam a2200325Ii 4500
001
347753
008
220209b c 000 0 eng
008
220209s2019 cau o 001 0 eng d
019
$a
1103605804
020
$a
1593279299
$q
electronic book
020
$a
9781593279295
$q
(electronic bk.)
020
$z
9781593279288
040
$a
KMU
041
0 #
$a
eng
087
# 4
$a
312.932P97
$b
M436 2019
100
1
$a
Matthes, Eric,
$d
1972-
$3
478941
245
1 0
$a
Python crash course:
$b
a hands-on, project-based introduction to programming/
$c
Eric Matthes.
250
$a
2nd edition.
260
# 1
$a
San Francisco, CA:
$b
No Starch Press, Inc.,
$c
2019
300
$a
1 online resource
500
$a
Includes index.
500
$a
The if-elif-else Chain
505
0 #
$a
Intro; Brief Contents; Contents in Detail; Preface to the Second Edition; Acknowledgments; Introduction; Who Is This Book For?; What Can You Expect to Learn?; Online Resources; Why Python?; Part I: Basics; Chapter 1: Getting Started; Setting Up Your Programming Environment; Python Versions; Running Snippets of Python Code; About the Sublime Text Editor; Python on Different Operating Systems; Python on Windows; Python on macOS; Python on Linux; Running a Hello World Program; Configuring Sublime Text to Use the Correct Python Version; Running hello_world.py; Troubleshooting
505
8 #
$a
Running Python Programs from a TerminalOn Windows; On macOS and Linux; Summary; Chapter 2: Variables and Simple Data Types; What Really Happens When You Run hello_world.py; Variables; Naming and Using Variables; Avoiding Name Errors When Using Variables; Variables Are Labels; Strings; Changing Case in a String with Methods; Using Variables in Strings; Adding Whitespace to Strings with Tabs or Newlines; Stripping Whitespace; Avoiding Syntax Errors with Strings; Numbers; Integers; Floats; Integers and Floats; Underscores in Numbers; Multiple Assignment; Constants; Comments
505
8 #
$a
How Do You Write Comments?What Kind of Comments Should You Write?; The Zen of Python; Summary; Chapter 3: Introducing Lists; What Is a List?; Accessing Elements in a List; Index Positions Start at 0, Not 1; Using Individual Values from a List; Changing, Adding, and Removing Elements; Modifying Elements in a List; Adding Elements to a List; Removing Elements from a List; Organizing a List; Sorting a List Permanently with the sort() Method; Sorting a List Temporarily with the sorted() Function; Printing a List in Reverse Order; Finding the Length of a List
505
8 #
$a
Avoiding Index Errors When Working with ListsSummary; Chapter 4: Working with Lists; Looping Through an Entire List; A Closer Look at Looping; Doing More Work Within a for Loop; Doing Something After a for Loop; Avoiding Indentation Errors; Forgetting to Indent; Forgetting to Indent Additional Lines; Indenting Unnecessarily; Indenting Unnecessarily After the Loop; Forgetting the Colon; Making Numerical Lists; Using the range() Function; Using range() to Make a List of Numbers; Simple Statistics with a List of Numbers; List Comprehensions; Working with Part of a List; Slicing a List
505
8 #
$a
Looping Through a SliceCopying a List; Tuples; Defining a Tuple; Looping Through All Values in a Tuple; Writing over a Tuple; Styling Your Code; The Style Guide; Indentation; Line Length; Blank Lines; Other Style Guidelines; Summary; Chapter 5: if Statements; A Simple Example; Conditional Tests; Checking for Equality; Ignoring Case When Checking for Equality; Checking for Inequality; Numerical Comparisons; Checking Multiple Conditions; Checking Whether a Value Is in a List; Checking Whether a Value Is Not in a List; Boolean Expressions; if Statements; Simple if Statements; if-else Statements
520
#
$a
Second edition of the best selling Python book in the world. A fast-paced, no-nonsense guide to programming in Python. This book teaches beginners the basics of programming in Python with a focus on real projects. This is the second edition of the best selling Python book in the world. Python Crash Course, 2nd Edition is a straightforward introduction to the core of Python programming. Author Eric Matthes dispenses with the sort of tedious, unnecessary information that can get in the way of learning how to program, choosing instead to provide a foundation in general programming concepts, Python fundamentals, and problem solving. Three real world projects in the second part of the book allow readers to apply their knowledge in useful ways. Readers will learn how to create a simple video game, use data visualization techniques to make graphs and charts, and build and deploy an interactive web application. Python Crash Course, 2nd Edition teaches beginners the essentials of Python quickly so that they can build practical programs and develop powerful programming techniques.
588
$a
Description based on online resource; title from digital title page (viewed on May 29, 2019).
590
$a
Added to collection customer.56279.3
650
# 7
$a
COMPUTERS / Programming Languages / Python.
$2
bisacsh
$3
479364
650
# 0
$a
Python (Computer program language)
$3
387788
655
# 4
$a
Electronic books.
$2
local
$3
228523
776
0 8
$i
Print version:
$a
Matthes, Eric
$t
Python Crash Course, 2nd Edition
$d
San Francisco, CA : No Starch Press, Incorporated,c2019
$z
9781593279288
856
4 0
$3
EBSCOhost
$u
http://er.kmu.edu.tw/er/accounts/login/?next=/er/geter/EB000121624/
筆 0 讀者評論
全部
圖書館
館藏
1 筆 • 頁數 1 •
1
條碼號
典藏地名稱
館藏流通類別
資料類型
索書號
使用類型
卷號
借閱狀態
預約狀態
備註欄
附件
000078EB
圖書館
一般圖書
電子書(Ebook)
EB 312.932P97 M436 2019
一般使用(Normal)
在架
0
預約
1 筆 • 頁數 1 •
1
多媒體
評論
新增評論
分享你的心得,請勿在此評論區張貼涉及人身攻擊、情緒謾罵、或內容涉及非法的不當言論,館方有權利刪除任何違反評論規則之發言,情節嚴重者一律停權,以維護所有讀者的自由言論空間。
Export
取書館別
處理中
...
變更密碼
登入