摘要: 原文地址:https://realpython.com/python type checking/ 在本指南中,你将了解Python类型检查。传统上,Python解释器以灵活但隐式的方式处理类型。Python的最新版本允许你指定可由不同工具使用的显式类型提示,以帮助您更有效地开发代码。 通过本教程, 阅读全文
posted @ 2020-03-01 20:18 公众号python学习开发 阅读(3336) 评论(1) 推荐(4) 编辑
摘要: ``` FROM python:3.8 AS pipenv_build RUN pip config set global.index-url https://pypi.tuna.tsinghua.edu.cn/simple && \ pip install pipenv COPY ./Pipfile* /tmp/ RUN cd /tmp && \ pipenv lock --requiremen 阅读全文
posted @ 2020-03-01 17:01 公众号python学习开发 阅读(940) 评论(0) 推荐(0) 编辑