The as keyword
When used with import statements, the as keyword is used to rename the imported object.
When used with with statement, the as keyword is used to bind the value returned by the context object’s __enter__ method to a target list.
Note that as isn’t a reserved keyword in current versions of Python. This may change in future versions.
