You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Modules and packages/Built-in modules/task.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -20,7 +20,7 @@ secondary prompts if the interpreter is in the interactive mode:
20
20
The variable `sys.path` is a list of strings that determines the interpreter’s search path
21
21
for modules: see what it prints for you when you run the code of the task.
22
22
23
-
Remember that you can use &shortcut:CodeCompletion; shortcut after a dot (.) to explore available
23
+
Remember that you can use the &shortcut:CodeCompletion; shortcut after a dot (.) to explore available
24
24
methods of a module. You can read more about standard modules <ahref="https://docs.python.org/3/tutorial/modules.html#standard-modules">here</a>.
25
25
26
26
For more structured and detailed information, you can also refer to [this Hyperskill knowledge base page](https://hyperskill.org/learn/step/6019#built-in-modules?utm_source=jba&utm_medium=jba_courses_links).
Copy file name to clipboardExpand all lines: Modules and packages/Import_module/task.md
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -20,8 +20,8 @@ my_funcs.func1()
20
20
For more structured and detailed information, you can also refer to [this Hyperskill knowledge base page](https://hyperskill.org/learn/step/6019#module-loading?utm_source=jba&utm_medium=jba_courses_links).
21
21
22
22
### Task
23
-
In the code editor, you have already imported module `my_funcs`.
24
-
Call the function `hello_world` from this module with argument `"John"`
23
+
In the code editor, you have already imported the module `my_funcs`.
24
+
Call the function `hello_world` from this module with the argument `"John"`.
25
25
26
26
<divclass='hint'>Access the function from the module using syntax such as <code>module.function()</code>.</div>
27
27
<divclass="hint">Don't forget to provide the function with an argument.</div>
Copy file name to clipboardExpand all lines: Modules and packages/Packages/task.md
+1-1Lines changed: 1 addition & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -43,7 +43,7 @@ You can learn more about packages by reading <a href="https://docs.python.org/3/
43
43
For more structured and detailed information, you can also refer to [this Hyperskill knowledge base page](https://hyperskill.org/learn/step/6384?utm_source=jba&utm_medium=jba_courses_links).
44
44
45
45
### Task
46
-
Look at the file structure in the `classes` and `functions` directories and in the subdirectories.
46
+
Look at the file structure in the `classes` and `functions` directories and their subdirectories.
47
47
48
48
In the code editor, import the `official` module properly to make the last `print`
0 commit comments