'as' 运算符的作用是什么?

What does the 'as' operator do?

我正在从 Zed Shaw 的学习 Python 艰难之路中学习 Python 的基础知识。我目前正在阅读第 36 章(符号审查),遇到了 'as' 运算符。我需要在 Python 中搜索它的用途。我知道这个问题很广泛,但我在 python.docs 或 SO 上没有找到任何东西。 这个运算符是做什么的?

with关键字一起使用:

with open("file.foo") as f:
    # Do something with f
    pass

它用于在导入模块或使用 with 子句时创建别名:

import pandas as pd

df = pd.DataFrame()

#####

with open(file_name, 'r') as my_file:
    my_file.readlines()