Language:
English
繁體中文
KMU OLIS
Login
Back
Switch To:
Labeled
|
MARC Mode
|
ISBD
Python crash course: a hands-on, pro...
~
Matthes, Eric, (1972-)
Python crash course: a hands-on, project-based introduction to programming/
Record Type:
Language materials, printed : Monograph/item
Title/Author:
Python crash course: / Eric Matthes.
Reminder of title:
a hands-on, project-based introduction to programming/
Author:
Matthes, Eric,
Published:
San Francisco, CA: No Starch Press, Inc., : 2019,
[NT 15000922]:
2nd edition.
Description:
1 online resource
Notes:
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.
Subject:
COMPUTERS / Programming Languages / Python. -
Online resource:
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/
based on 0 review(s)
ALL
圖書館
Items
1 records • Pages 1 •
1
Inventory Number
Location Name
Item Class
Material type
Call number
Usage Class
Volume Number
Loan Status
No. of reservations
Opac note
Attachments
000078EB
圖書館
一般圖書
電子書(Ebook)
EB 312.932P97 M436 2019
一般使用(Normal)
On shelf
0
Reserve
1 records • Pages 1 •
1
Multimedia
Reviews
Add a review
and share your thoughts with other readers
Export
pickup library
Processing
...
Change password
Login
Please sign in
User name
(請輸入學號/職號)
.
Password
(請輸入學校電子郵件密碼)
.
本校和附屬機構教職員工生,可透過校務資訊系統【快速登入區】進行登入,不用再認證。
校內教職員工及學生
帳號:學號/職號;密碼:本校電子信箱密碼
附屬機構醫事人員、其他非編制內教職員工
帳號:職號;密碼:身份證號共10碼,英文字母大寫
校友及外校實習生
帳號:借書證上之條碼號;密碼:請點選忘記密碼重新設定
如有任何問題歡迎洽詢圖書館流通櫃台(分機2133*83;read@kmu.edu.tw),謝謝。
~請尊重智慧財產權,勿非法影印~
Login information for International Students: *Username: Student ID Password: KMU Email Password
If you have any question, please contact us. (Tel : 07-3121101#2133#83; Email: read@kmu.edu.tw)
~Please respect the Intellectual Property Rights, do not use illegal copies of textbooks ~
Remember me on this computer
Cancel
Forgot your password?