【Lynda】Python 3 Essential Training【CHN】中英文字幕[SRT]

作者: acely. 分类: Lynda中文字幕, ◇ 编程与开发

==========教程信息=====================================================
教程名称:Python 3 Essential Training
作者:Bill Weinman
主题:Developer, Web
使用软件:Python 3
难度等级:初级
时长: 6h 36m
发布日期: Jul 29, 2010

┏ACELY STUDIO,2012
┃更多资源请访问
┃◆唯一发布站:ACELY.CN
┗◆我的博客:http://blog.sina.com.cn/u/1991840741

==========教程目录文件列表=============================================
Python 3 Essential Training[SRT]
├─◆1. Introduction
│ └─◇ 0101 Welcome.srt
│ └─◇ 0102 Understanding prerequisites for Python.srt
│ └─◇ 0103 Using the exercise files.srt
├─◆2. Python Quick Start
│ └─◇ 0201 Getting started with Hello World.srt
│ └─◇ 0202 Selecting code with conditionals.srt
│ └─◇ 0203 Repeating code with a loop.srt
│ └─◇ 0204 Reusing code with a function.srt
│ └─◇ 0205 Creating sequences with generator functions.srt
│ └─◇ 0206 Reusing code and data with a class.srt
│ └─◇ 0207 Greater reusability with inheritance and polymorphism.srt
│ └─◇ 0208 Handling errors with exceptions.srt
├─◆3. Setting Up Python
│ └─◇ 0301 Installing Python 3 and Eclipse for Windows.srt
│ └─◇ 0302 Installing Python 3 and Eclipse for Mac.srt
├─◆4. General Syntax
│ └─◇ 0401 Creating a main script.srt
│ └─◇ 0402 Understanding whitespace in Python.srt
│ └─◇ 0403 Commenting code.srt
│ └─◇ 0404 Assigning values.srt
│ └─◇ 0405 Selecting code and values with conditionals.srt
│ └─◇ 0406 Creating and using functions.srt
│ └─◇ 0407 Creating and using objects.srt
├─◆5. Variables, Objects, and Values
│ └─◇ 0501 Understanding variables and objects in Python.srt
│ └─◇ 0502 Distinguishing mutable and immutable objects.srt
│ └─◇ 0503 Using numbers.srt
│ └─◇ 0504 Using strings.srt
│ └─◇ 0505 Aggregating values with lists and tuples.srt
│ └─◇ 0506 Creating associative lists with dictionaries.srt
│ └─◇ 0507 Finding the type and identity of a variable.srt
│ └─◇ 0508 Specifying logical values with True and False.srt
├─◆6. Conditionals
│ └─◇ 0601 Selecting code with if and else conditional statements.srt
│ └─◇ 0602 Setting multiple choices with elif.srt
│ └─◇ 0603 Understanding other strategies for multiple choices.srt
│ └─◇ 0604 Using the conditional expression.srt
├─◆7. Loops
│ └─◇ 0701 Creating loops with while.srt
│ └─◇ 0702 Iterating with for.srt
│ └─◇ 0703 Enumerating iterators.srt
│ └─◇ 0704 Controlling loop flow with break, continue, and else.srt
├─◆8. Operators
│ └─◇ 0801 Performing simple arithmetic.srt
│ └─◇ 0802 Operating on bitwise values.srt
│ └─◇ 0803 Comparing values.srt
│ └─◇ 0804 Operating on Boolean values.srt
│ └─◇ 0805 Operating on parts of a container with the slice operator.srt
│ └─◇ 0806 Understanding operator precedence.srt
├─◆9. Regular Expressions
│ └─◇ 0901 Using the re module.srt
│ └─◇ 0902 Searching with regular expressions.srt
│ └─◇ 0903 Replacing with regular expressions.srt
│ └─◇ 0904 Reusing regular expressions with re.compile.srt
├─◆10. Exceptions
│ └─◇ 1001 Learning how exceptions work.srt
│ └─◇ 1002 Handling exceptions.srt
│ └─◇ 1003 Raising exceptions.srt
├─◆11. Functions
│ └─◇ 1101 Defining functions.srt
│ └─◇ 1102 Using lists of arguments.srt
│ └─◇ 1103 Using named function arguments.srt
│ └─◇ 1104 Returning values from functions.srt
│ └─◇ 1105 Creating a sequence with a generator function.srt
├─◆12. Classes
│ └─◇ 1201 Understanding classes and objects.srt
│ └─◇ 1202 Using methods.srt
│ └─◇ 1203 Using object data.srt
│ └─◇ 1204 Understanding inheritance.srt
│ └─◇ 1205 Applying polymorphism to classes.srt
│ └─◇ 1206 Using generators.srt
│ └─◇ 1207 Using decorators.srt
├─◆13. String Methods
│ └─◇ 1301 Understanding strings as objects.srt
│ └─◇ 1302 Working with common string methods.srt
│ └─◇ 1303 Formatting strings with str.format.srt
│ └─◇ 1304 Splitting and joining strings.srt
│ └─◇ 1305 Finding and using standard string methods.srt
├─◆14. Containers
│ └─◇ 1401 Creating sequences with tuples and lists.srt
│ └─◇ 1402 Operating on sequences with built-in methods.srt
│ └─◇ 1403 Organizing data with dictionaries.srt
│ └─◇ 1404 Operating on character data with bytes and byte arrays.srt
├─◆15. File I O
│ └─◇ 1501 Opening files.srt
│ └─◇ 1502 Reading and writing text files.srt
│ └─◇ 1503 Reading and writing binary files.srt
├─◆16. Databases
│ └─◇ 1601 Creating a database with SQLite 3.srt
│ └─◇ 1602 Creating, retrieving, updating, and deleting records.srt
│ └─◇ 1603 Creating a database object.srt
├─◆17. Modules
│ └─◇ 1701 Using standard library modules.srt
│ └─◇ 1702 Finding third-party modules.srt
│ └─◇ 1703 Creating a module.srt
├─◆18. Debugging
│ └─◇ 1801 Dealing with syntax errors.srt
│ └─◇ 1802 Dealing with runtime errors.srt
│ └─◇ 1803 Dealing with logical errors.srt
│ └─◇ 1804 Using unit tests.srt
├─◆19. Building a Database Application
│ └─◇ 1901 Normalizing a database interface.srt
│ └─◇ 1902 Deconstructing a database application.srt
│ └─◇ 1903 Displaying random entries from a database.srt
├─◆Conclusion
│ └─◇ Goodbye.srt

【本字幕由ACELY.CN独家制作发布】


┃本套教程字幕包含中文字幕
┃中文字幕使用机器翻译,对翻译结果中不当内容不承担任何责任!
┃更多中文字幕请访问唯一发布站【ACELY.CN】
┃本站中文字幕未经允许一律严禁转载!


>>>>>>>【点我下载】<<<<<<<

(1)条评论

  • wxdx1989

    |

    谢谢!学习一下~

    回复

您的留言是我最大的支持!

你必须登录才能发表评论!

※ 本站内容未经允许一律严禁转载!Lynda教程及字幕交流群:214645753
※ 本站文件统一解压密码:acely.cn 或 www.cgsub.com