浏览代码

Jupyter目录

David 1 月之前
父节点
当前提交
3307d23437
共有 2 个文件被更改,包括 55 次插入1 次删除
  1. 2 1
      .gitignore
  2. 53 0
      Jupyter/样例.ipynb

+ 2 - 1
.gitignore

@@ -8,4 +8,5 @@ ipynb_checkpoints/**
 *.zip
 **/.ipynb_checkpoints/
 .idea
-**/data/
+**/data/
+.ipynb_checkpoints/

+ 53 - 0
Jupyter/样例.ipynb

@@ -0,0 +1,53 @@
+{
+ "cells": [
+  {
+   "cell_type": "code",
+   "execution_count": 4,
+   "id": "87e34f6a-d34e-42db-b8bc-1b0c9d6866db",
+   "metadata": {},
+   "outputs": [],
+   "source": [
+    "import pandas as pd"
+   ]
+  },
+  {
+   "cell_type": "code",
+   "execution_count": 6,
+   "id": "6bdbc331-2cae-49cd-932e-c00f435fc604",
+   "metadata": {},
+   "outputs": [
+    {
+     "name": "stdout",
+     "output_type": "stream",
+     "text": [
+      "测试\n"
+     ]
+    }
+   ],
+   "source": [
+    "print(\"测试\")"
+   ]
+  }
+ ],
+ "metadata": {
+  "kernelspec": {
+   "display_name": "Python 3 (ipykernel)",
+   "language": "python",
+   "name": "python3"
+  },
+  "language_info": {
+   "codemirror_mode": {
+    "name": "ipython",
+    "version": 3
+   },
+   "file_extension": ".py",
+   "mimetype": "text/x-python",
+   "name": "python",
+   "nbconvert_exporter": "python",
+   "pygments_lexer": "ipython3",
+   "version": "3.12.7"
+  }
+ },
+ "nbformat": 4,
+ "nbformat_minor": 5
+}