Search for tag: "import"
Lesson 12.4 Functions in MemoryWe know what happens when we call a function. But as we show in this video, Python also does something very important when we define a function. It has to store the definition somewhere.
From Hannah Lee
85 plays
|
|
Lesson 5.3 Function ModulesIn the previous video, we wrote a function definition in the interactive shell. In this video, we write it in a module. We show how this changes things when you call the function.
From Hannah Lee
124 plays
|
|
Lesson 4.3 Module StructureIn this video we take a closer look at module files. We show what types of things we can put into a module file, and what their purpose is. In addition, after this video should have a better idea of…
From Hannah Lee
134 plays
|
|
Lesson 4.1 ModulesIn this video we talk about what a module really is, and why it is so important for us to have them in this course. We show how to make our own modules and how to import them. In this video it will…
From Hannah Lee
146 plays
|
|
Lesson 3.5 Advanced Import Statements (OPTIONAL)This is a completely optional video for people who are interested in all of the different ways that you can import a module in Python. However, it is a tad advanced for a beginning programmer. If you…
From Hannah Lee
109 plays
|
|
Lesson 3.3 Module-Based FunctionsPython has very few functions built-in. All other functions are provided by modules, special files that add optional functionality to Python. In this video we show how to use these modules to…
From Hannah Lee
138 plays
|
|