Skip to content

Commit feba50d

Browse files
committed
add colab.
1 parent 0c0cd1a commit feba50d

7 files changed

Lines changed: 20 additions & 9 deletions

01_base/01_字符串类型_str.ipynb

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,9 +4,8 @@
44
"cell_type": "markdown",
55
"metadata": {},
66
"source": [
7-
"| Notebook | Description | |\n",
8-
"|:----------|:-------------|------:|\n",
9-
"| [01_base/01_字符串类型_str.ipynb](https://github.com/shibing624/python-tutorial/blob/master/01_base/01_字符串类型_str.ipynb) | Python字符串类型 |[![Open In Colab](https://colab.research.google.com/assets/colab-badge.svg)](https://colab.research.google.com/github/shibing624/python-tutorial/blob/master/01_base/01_字符串类型_str.ipynb) |\n",
7+
"| [01_base/01_字符串类型_str.ipynb](https://github.com/shibing624/python-tutorial/blob/master/01_base/01_字符串类型_str.ipynb) | Python字符串类型 |[Open In Colab](https://colab.research.google.com/github/shibing624/python-tutorial/blob/master/01_base/01_字符串类型_str.ipynb) |\n",
8+
"\n",
109
"\n",
1110
"# 字符串"
1211
]

01_base/02_列表类型_list.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"id": "bf1cba95",
66
"metadata": {},
77
"source": [
8+
"[Open In Colab](https://colab.research.google.com/github/shibing624/python-tutorial/blob/master/01_base/02_列表类型_list.ipynb)\n",
9+
"\n",
810
"# 列表\n",
911
"\n"
1012
]
@@ -714,4 +716,4 @@
714716
},
715717
"nbformat": 4,
716718
"nbformat_minor": 5
717-
}
719+
}

01_base/03_元组类型_tuple.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"id": "ec58d47e",
66
"metadata": {},
77
"source": [
8+
"[Open In Colab](https://colab.research.google.com/github/shibing624/python-tutorial/blob/master/01_base/03_元组类型_tuple.ipynb)\n",
9+
"\n",
810
"# tuple\n",
911
"\n",
1012
"与列表相似,元组tuple也是个有序序列,但是元组是不可变的,用()生成。"
@@ -164,4 +166,4 @@
164166
},
165167
"nbformat": 4,
166168
"nbformat_minor": 5
167-
}
169+
}

01_base/04_字典类型_dict.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"id": "8f486159",
66
"metadata": {},
77
"source": [
8+
"[Open In Colab](https://colab.research.google.com/github/shibing624/python-tutorial/blob/master/01_base/04_字典类型_dict.ipynb)\n",
9+
"\n",
810
"# dict\n",
911
"\n",
1012
"字典 dictionary ,在一些编程语言中也称为 hash , map ,\n",
@@ -690,4 +692,4 @@
690692
},
691693
"nbformat": 4,
692694
"nbformat_minor": 5
693-
}
695+
}

01_base/05_集合类型_set.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"id": "cf1244a8",
66
"metadata": {},
77
"source": [
8+
"[Open In Colab](https://colab.research.google.com/github/shibing624/python-tutorial/blob/master/01_base/05_集合类型_set.ipynb)\n",
9+
"\n",
810
"# 集合\n",
911
"\n",
1012
"列表和字符串都是一种有序序列,而集合 set 是一种无序的序列。\n",
@@ -587,4 +589,4 @@
587589
},
588590
"nbformat": 4,
589591
"nbformat_minor": 5
590-
}
592+
}

01_base/06_条件判断_if.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"id": "4af3adfa",
66
"metadata": {},
77
"source": [
8+
"[Open In Colab](https://colab.research.google.com/github/shibing624/python-tutorial/blob/master/01_base/06_条件判断_if.ipynb)\n",
9+
"\n",
810
"# 条件判断\n",
911
"\n",
1012
"### 基本用法"
@@ -163,4 +165,4 @@
163165
},
164166
"nbformat": 4,
165167
"nbformat_minor": 5
166-
}
168+
}

01_base/07_列表推导式.ipynb

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,8 @@
55
"id": "01e2695a",
66
"metadata": {},
77
"source": [
8+
"[Open In Colab](https://colab.research.google.com/github/shibing624/python-tutorial/blob/master/01_base/07_列表推导式.ipynb)\n",
9+
"\n",
810
"# 列表推导式\n",
911
"\n",
1012
"循环可以用来生成列表:"
@@ -340,4 +342,4 @@
340342
},
341343
"nbformat": 4,
342344
"nbformat_minor": 5
343-
}
345+
}

0 commit comments

Comments
 (0)