Skip to content

Commit bcc436c

Browse files
committed
코랩 링크, 텍스트 수정
1 parent b5ea212 commit bcc436c

File tree

1 file changed

+12
-13
lines changed

1 file changed

+12
-13
lines changed

05장.ipynb

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -3,8 +3,7 @@
33
"nbformat_minor": 0,
44
"metadata": {
55
"colab": {
6-
"provenance": [],
7-
"collapsed_sections": []
6+
"provenance": []
87
},
98
"kernelspec": {
109
"name": "python3",
@@ -166,7 +165,7 @@
166165
{
167166
"cell_type": "markdown",
168167
"source": [
169-
"**손가락 운동**"
168+
"**뇌풀기 문제**"
170169
],
171170
"metadata": {
172171
"id": "GzvrEzkA3HSt"
@@ -438,7 +437,7 @@
438437
{
439438
"cell_type": "markdown",
440439
"source": [
441-
"**손가락 운동**"
440+
"**뇌풀기 문제**"
442441
],
443442
"metadata": {
444443
"id": "bfh8_gwfU1bZ"
@@ -851,7 +850,7 @@
851850
{
852851
"cell_type": "code",
853852
"source": [
854-
"print([[(x,y) for x in range(6) if x%2 == 0] \n",
853+
"print([[(x,y) for x in range(6) if x%2 == 0]\n",
855854
" for y in range(6) if y%3 == 0])"
856855
],
857856
"metadata": {
@@ -986,7 +985,7 @@
986985
{
987986
"cell_type": "markdown",
988987
"source": [
989-
"**손가락 운동**"
988+
"**뇌풀기 문제**"
990989
],
991990
"metadata": {
992991
"id": "u8U25JqZOz79"
@@ -1210,7 +1209,7 @@
12101209
{
12111210
"cell_type": "markdown",
12121211
"source": [
1213-
"**손가락 운동**"
1212+
"**뇌풀기 문제**"
12141213
],
12151214
"metadata": {
12161215
"id": "4R5RHl3nXYAY"
@@ -1387,7 +1386,7 @@
13871386
{
13881387
"cell_type": "code",
13891388
"source": [
1390-
"month_numbers = {'Jan':1, 'Feb':2, 'Mar':3, 'Apr':4, 'May':5, \n",
1389+
"month_numbers = {'Jan':1, 'Feb':2, 'Mar':3, 'Apr':4, 'May':5,\n",
13911390
" 1:'Jan', 2:'Feb', 3:'Mar', 4:'Apr', 5:'May'}\n",
13921391
"print(month_numbers)\n",
13931392
"print('세 번째 달: ' + month_numbers[3])\n",
@@ -1460,7 +1459,7 @@
14601459
" word = ''\n",
14611460
" return f'{translation} {translate_word(word, dictionary)}'\n",
14621461
"\n",
1463-
"print(translate('I drink good red wine, and eat bread.', \n",
1462+
"print(translate('I drink good red wine, and eat bread.',\n",
14641463
" dicts,'English to French'))\n",
14651464
"print(translate('Je bois du vin rouge.',\n",
14661465
" dicts, 'French to English'))"
@@ -1634,7 +1633,7 @@
16341633
{
16351634
"cell_type": "markdown",
16361635
"source": [
1637-
"**손가락 운동**"
1636+
"**뇌풀기 문제**"
16381637
],
16391638
"metadata": {
16401639
"id": "k9Ma_CO-cvzw"
@@ -1792,7 +1791,7 @@
17921791
{
17931792
"cell_type": "code",
17941793
"source": [
1795-
"encoder = (lambda code_keys, plain_text: \n",
1794+
"encoder = (lambda code_keys, plain_text:\n",
17961795
" ''.join(['*' + code_keys[c] for c in plain_text])[1:])"
17971796
],
17981797
"metadata": {
@@ -1885,7 +1884,7 @@
18851884
{
18861885
"cell_type": "markdown",
18871886
"source": [
1888-
"**손가락 운동**"
1887+
"**뇌풀기 문제**"
18891888
],
18901889
"metadata": {
18911890
"id": "tVGokHQIzHDm"
@@ -1933,7 +1932,7 @@
19331932
{
19341933
"cell_type": "markdown",
19351934
"source": [
1936-
"**손가락 운동**"
1935+
"**뇌풀기 문제**"
19371936
],
19381937
"metadata": {
19391938
"id": "T6fWmqts1xrZ"

0 commit comments

Comments
 (0)