We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7f06e4c commit b826507Copy full SHA for b826507
docs/create-and-import-modules.md
@@ -72,7 +72,7 @@ In Python, all variables, functions, classes, and other members that can be acce
72
73
Feature | JavaScript | Python
74
--- | --- | ---
75
-Import module | `import foo from 'module'` | `import foo`
+Import module | `import foo from 'module'` | `import module`
76
Import specific members from module | `import { foo, bar } from 'module'` | `from module import foo, bar`
77
Import module with alias | `import { foo as alias } from 'module'` | `from module import foo as alias`
78
Import entire module with alias | `import * as alias from 'module'` | `import module as alias`
0 commit comments