Этот материал находится в платной подписке. Оформи премиум подписку и смотри или слушай Write Pythonic Code Like a Seasoned Developer, а также все другие курсы, прямо сейчас!
Премиум
  • Урок 1. 00:04:28
    Welcome and thanks for coming
  • Урок 2. 00:03:57
    Topics covered
  • Урок 3. 00:00:19
    Get the source code
  • Урок 4. 00:00:18
    Do you need to learn Python too?
  • Урок 5. 00:02:00
    Python 3 or Python 2?
  • Урок 6. 00:01:05
    Recommended editor
  • Урок 7. 00:02:05
    Video player: A quick feature tour
  • Урок 8. 00:01:55
    Who decides what is Pythonic?
  • Урок 9. 00:04:00
    Import statements
  • Урок 10. 00:02:47
    Code layout and structure
  • Урок 11. 00:02:09
    Documentation strings
  • Урок 12. 00:03:05
    Naming conventions
  • Урок 13. 00:05:57
    Truthiness and boolean statements
  • Урок 14. 00:02:24
    Testing for None
  • Урок 15. 00:06:19
    Multiple tests against a single variable
  • Урок 16. 00:02:33
    Choosing an item at random
  • Урок 17. 00:07:07
    String formatting
  • Урок 18. 00:02:50
    Care enough to send an exit code
  • Урок 19. 00:04:04
    Flat is better than nested
  • Урок 20. 00:01:44
    Why dictionaries
  • Урок 21. 00:09:33
    Stop using lists for everything
  • Урок 22. 00:06:16
    Merging dictionaries
  • Урок 23. 00:09:04
    Hacking Python's memory
  • Урок 24. 00:07:39
    Safer dictionary item access
  • Урок 25. 00:06:26
    Dictionaries as switch statements
  • Урок 26. 00:03:23
    To and from JSON
  • Урок 27. 00:04:13
    Custom iteration and your types
  • Урок 28. 00:03:22
    Testing for containment
  • Урок 29. 00:07:22
    Slicing collections all the way to the database
  • Урок 30. 00:08:09
    On-demand computation with yield and generators
  • Урок 31. 00:03:41
    Recursive generators with yield from
  • Урок 32. 00:06:23
    Inline generators via expressions
  • Урок 33. 00:04:12
    Counting generators
  • Урок 34. 00:01:19
    Introduction to Pythonic functions
  • Урок 35. 00:07:05
    Leverage inline methods with lambda expressions
  • Урок 36. 00:07:29
    I'm going to ignore your return value
  • Урок 37. 00:02:43
    There is no method overloading in Python
  • Урок 38. 00:03:39
    Default values for overloads
  • Урок 39. 00:02:22
    Variable argument counts for overloads
  • Урок 40. 00:03:42
    Unpacking dictionaries as named arguments
  • Урок 41. 00:07:29
    Beware: The danger of mutable default arguments
  • Урок 42. 00:01:48
    Introduction to packaging and module idioms
  • Урок 43. 00:05:54
    Pythonic import statements
  • Урок 44. 00:05:21
    What is __main__ and when do you use it?
  • Урок 45. 00:02:34
    Isolation with virtual environments
  • Урок 46. 00:03:40
    State your requirements
  • Урок 47. 00:06:19
    Defining fields on classes
  • Урок 48. 00:05:28
    Encapsulation and data hiding
  • Урок 49. 00:04:46
    Do not write get_thing() set_thing()
  • Урок 50. 00:02:27
    There is no numerical for loop
  • Урок 51. 00:01:51
    Wait, is there a numerical for loop (v1)?
  • Урок 52. 00:01:48
    Wait, is there a numerical for loop (v2)?
  • Урок 53. 00:02:46
    Loops have an else block, don't use it
  • Урок 54. 00:03:57
    Tuple assignment and unpacking
  • Урок 55. 00:01:25
    Swapping values
  • Урок 56. 00:03:28
    Multiple return values from a function
  • Урок 57. 00:04:44
    Prefer named tuples
  • Урок 58. 00:03:15
    Human Python as a stand in for packages in general
  • Урок 59. 00:04:20
    Requests: HTTP for Humans
  • Урок 60. 00:03:41
    Records: SQL for Humans
  • Урок 61. 00:00:25
    You've done it!
  • Урок 62. 00:06:06
    Lightning review
  • Урок 63. 00:00:33
    Source code
  • Урок 64. 00:00:54
    Thanks and bye