# Python代码段 **Repository Path**: wangplusplus/PySnippets ## Basic Information - **Project Name**: Python代码段 - **Description**: 用于收集日常常用的Python代码片段。 - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2020-07-16 - **Last Updated**: 2020-12-19 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # PySnippets Python snippets Python version 3.8.4 运行环境通过conda命令导出: ``` conda env export -n snippet > environment.yml ``` 如果没有创建python运行环境,可以运行如下命令: ```bash conda env create -f environment.yml conda activate snippet ```