-
Урок 1. 00:06:21Welcome and thanks for coming
-
Урок 2. 00:03:23Doing the exercises
-
Урок 3. 00:05:10Python 2 or Python 3 and editors
-
Урок 4. 00:04:18OS X: Installing Python and PyCharm
-
Урок 5. 00:04:12Windows: Installing Python and PyCharm
-
Урок 6. 00:05:07Linux: Installing Python and PyCharm
-
Урок 7. 00:02:05Video player: A quick feature tour
-
Урок 8. 00:01:14Why hello world (it's simple right?)
-
Урок 9. 00:04:13Building Hello world, part 1
-
Урок 10. 00:01:56Core concepts: Variables and calling functions
-
Урок 11. 00:02:14Building Hello world, part 2
-
Урок 12. 00:03:35PyCharm Tour
-
Урок 13. 00:02:02Intro to the app
-
Урок 14. 00:05:30Getting started with Guess That Number Game
-
Урок 15. 00:02:43Core concepts: Conditionals and truthiness
-
Урок 16. 00:04:16Using loops and conditionals
-
Урок 17. 00:03:11Concept: Shape of Python code (blocks and suites)
-
Урок 18. 00:03:32String formatting
-
Урок 19. 00:01:36Birthday countdown app
-
Урок 20. 00:04:25Sketching the program flow
-
Урок 21. 00:05:57Dates and times - getting the birthday
-
Урок 22. 00:07:03Differences between dates
-
Урок 23. 00:03:45Summary and debugging with PyCharm
-
Урок 24. 00:01:32Intro to the journal app
-
Урок 25. 00:07:37Building the event loop
-
Урок 26. 00:06:06Lists and for-in loops
-
Урок 27. 00:01:14Core concept: For-in loops
-
Урок 28. 00:05:56Importing and using additional Python files
-
Урок 29. 00:01:12Core concept: Importing modules and packages
-
Урок 30. 00:10:30Text-based File I/O and with
-
Урок 31. 00:00:50Core concept: File I/O
-
Урок 32. 00:01:54Complex conditionals and, or, and not
-
Урок 33. 00:00:57Core concept: Complex conditionals
-
Урок 34. 00:03:23Documenting the journal module with docstrings
-
Урок 35. 00:00:27Core concept: Docstrings
-
Урок 36. 00:06:01Using __name__ to selectively execute code
-
Урок 37. 00:00:45Core concept: __name__ and imports
-
Урок 38. 00:02:38Intro to the weather app
-
Урок 39. 00:04:00Building the beginnings of the weather app
-
Урок 40. 00:03:48What website are we using for weather data anyway?
-
Урок 41. 00:03:12Concept: Python Package Index (PyPI)
-
Урок 42. 00:02:41Concept: pip
-
Урок 43. 00:03:15Installing packages via pip (command line)
-
Урок 44. 00:02:39Installing packages via pip (PyCharm)
-
Урок 45. 00:03:38Making HTTP Requests with requests
-
Урок 46. 00:03:18Concept: Slicing collections
-
Урок 47. 00:02:56Getting started with Beautiful Soup
-
Урок 48. 00:02:56Finding the right CSS selectors via your browser
-
Урок 49. 00:04:08Using CSS and Beautiful Soup to find values
-
Урок 50. 00:04:41The web is a messy place, let's clean it up
-
Урок 51. 00:05:27Returning multiple values via Tuples
-
Урок 52. 00:03:19Named tuples: Making tuples usable
-
Урок 53. 00:02:44Concept: Tuples
-
Урок 54. 00:08:13Virtual environments: A clean slate
-
Урок 55. 00:01:08Concept: Virtual Environments
-
Урок 56. 00:01:28Introducing the LOLCat Factory App
-
Урок 57. 00:06:41Creating and detecting directories
-
Урок 58. 00:06:46Downloading cats
-
Урок 59. 00:04:21Downloading and writing binary data
-
Урок 60. 00:03:00Showing LOLCats on OS X
-
Урок 61. 00:02:14LOLCat App on Linux
-
Урок 62. 00:02:57LOLCat App on Windows
-
Урок 63. 00:02:48Introduction to the Wizard Battle App
-
Урок 64. 00:02:59Building the game loop
-
Урок 65. 00:04:03Modeling with classes
-
Урок 66. 00:07:52Initializing classes and creating objects
-
Урок 67. 00:13:22Adding behaviors to the wizard
-
Урок 68. 00:02:12Concept: Classes
-
Урок 69. 00:02:04Concept: Objects vs. Classes
-
Урок 70. 00:05:35Exploring specialized (derived) classes
-
Урок 71. 00:01:37Concept: Inheritance
-
Урок 72. 00:13:12Creating the creature hierarchy
-
Урок 73. 00:02:22Concept: Polymorphism
-
Урок 74. 00:02:00Introduction to the File Searcher App
-
Урок 75. 00:04:53Sketching out the search app
-
Урок 76. 00:06:37Searching single files
-
Урок 77. 00:03:50Improved search results
-
Урок 78. 00:03:10Recursion factorial example
-
Урок 79. 00:01:36Core concept: Recursion
-
Урок 80. 00:02:53Recursion applied
-
Урок 81. 00:04:22The performance problem
-
Урок 82. 00:07:17Generator play: a simple example
-
Урок 83. 00:01:47Core concept: Generator methods
-
Урок 84. 00:06:01Generators save the day
-
Урок 85. 00:02:36Introduction to the Real Estate Data Miner App
-
Урок 86. 00:03:15Sketching out the Real Estate Data Miner App
-
Урок 87. 00:03:48CSV Processing From Scratch
-
Урок 88. 00:03:39CSV Processing with the CSV module
-
Урок 89. 00:05:45Dictionary playground
-
Урок 90. 00:01:40Concept: Dictionaries
-
Урок 91. 00:06:30Parsing CSV data into Classes
-
Урок 92. 00:05:45Finding the most expensive house via lambda expressions
-
Урок 93. 00:01:29Concept: lambdas
-
Урок 94. 00:03:30Mining data with loops
-
Урок 95. 00:04:51Python 3 AND Python 2 Compatible Code
-
Урок 96. 00:02:07Concept: Python 3 AND Python 2
-
Урок 97. 00:05:26Data mining with list comprehensions
-
Урок 98. 00:02:32Concept: list comprehensions
-
Урок 99. 00:04:41Data mining with generator expressions
-
Урок 100. 00:01:34Concept: generator expressions
-
Урок 101. 00:02:32Concept: generator pipelines
-
Урок 102. 00:02:06Introduction to the movie search app
-
Урок 103. 00:02:16Movie HTTP service
-
Урок 104. 00:04:38Exploring the search API
-
Урок 105. 00:03:18Exploring the search API: The Pythonic Version
-
Урок 106. 00:03:38Adding search to the app
-
Урок 107. 00:02:56Catching errors with try except
-
Урок 108. 00:04:25Using try except to handle specific errors
-
Урок 109. 00:01:16Concept: try except
-
Урок 110. 00:01:27You made it, you are done!
-
Урок 111. 00:08:10Course and app review
-
Урок 112. 00:01:25Thank you and goodbye
-
Урок 113. 00:00:52Credits
- Категории
- Источники
- Все курсы
- Разделы
- Книги