Skip to content

Latest commit

 

History

History
38 lines (27 loc) · 458 Bytes

File metadata and controls

38 lines (27 loc) · 458 Bytes
description modules
keywords python
title modules
toc_max 4

import system

  • import <module name>
import mod
  • from <module name> import <name>
from mod import s, foo
  • everything from module from <module name> import *
from mod import *
  • from <module name> import <name> as <alt name>
from mod import s as string
  • import as
from mod as my_new_mod