From 48223ca3e9794f5955ca0e926cbc497f169ee9c2 Mon Sep 17 00:00:00 2001 From: xuma Date: Tue, 16 Aug 2022 01:43:01 +0800 Subject: [PATCH] =?UTF-8?q?=E6=B7=BB=E5=8A=A0=E6=96=B0=E7=9A=84=E9=97=AE?= =?UTF-8?q?=E9=A2=98?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- source/_posts/踩坑日记.md | 2 ++ source/_posts/零碎的小问题.md | 30 ++++++++++++++++++++++++++++++ 2 files changed, 32 insertions(+) create mode 100644 source/_posts/零碎的小问题.md diff --git a/source/_posts/踩坑日记.md b/source/_posts/踩坑日记.md index 6c7a9359..1b7c3712 100644 --- a/source/_posts/踩坑日记.md +++ b/source/_posts/踩坑日记.md @@ -28,3 +28,5 @@ aside: 路径开头是 `/`,表示从打开的可视文件夹的根目录开始计算。 `../`,**导航到的路径一定是在可视范围之内,不能跑到根目录之上,vs code会识别不到。例外情况是:jetbrains全家桶都可以正常识别。其它软件未测。** + +>未完待续 diff --git a/source/_posts/零碎的小问题.md b/source/_posts/零碎的小问题.md new file mode 100644 index 00000000..d0b55be5 --- /dev/null +++ b/source/_posts/零碎的小问题.md @@ -0,0 +1,30 @@ +--- +title: 零碎的小问题 +date: 2021-08-16 17:40:28 +updated: +tags: +categories: +keywords: +description: +top_img: +comments: +cover: +toc: +toc_number: +toc_style_simple: +copyright: +copyright_author: +copyright_author_href: +copyright_url: +copyright_info: +mathjax: +katex: +highlight_shrink: +aside: +--- + +### python中的__future__包 + +__future__是py2的概念,对应于py2,py3就是future,这是为了在是py2的时候还能用到一些新版本的特性而做成的包。意思禁用py2的import特性改成用py3的import的特性 + +>未完待续