Skip to content

Commit 34a8ec0

Browse files
committed
Dierctory
1 parent 6fcf53c commit 34a8ec0

File tree

1 file changed

+71
-3
lines changed

1 file changed

+71
-3
lines changed

00.Directory.ipynb

Lines changed: 71 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,12 +79,80 @@
7979
},
8080
{
8181
"cell_type": "code",
82-
"execution_count": null,
82+
"execution_count": 12,
8383
"metadata": {},
84-
"outputs": [],
84+
"outputs": [
85+
{
86+
"name": "stdout",
87+
"output_type": "stream",
88+
"text": [
89+
"Change Directory\n"
90+
]
91+
}
92+
],
8593
"source": [
86-
"os.chdir('C:\\\\Python33')"
94+
"print(\"Change Directory\")\n",
95+
"os.chdir('/home/angicia/Workspace/')"
8796
]
97+
},
98+
{
99+
"cell_type": "code",
100+
"execution_count": 13,
101+
"metadata": {},
102+
"outputs": [
103+
{
104+
"name": "stdout",
105+
"output_type": "stream",
106+
"text": [
107+
"/home/angicia/Workspace\n"
108+
]
109+
}
110+
],
111+
"source": [
112+
"print(os.getcwd())"
113+
]
114+
},
115+
{
116+
"cell_type": "code",
117+
"execution_count": 14,
118+
"metadata": {},
119+
"outputs": [
120+
{
121+
"name": "stdout",
122+
"output_type": "stream",
123+
"text": [
124+
"Change Directory\n"
125+
]
126+
}
127+
],
128+
"source": [
129+
"print(\"Change Directory\")\n",
130+
"os.chdir('/home/angicia/Workspace/PythonML/Basic-exercises-on-Machine-Learning-with-Python')"
131+
]
132+
},
133+
{
134+
"cell_type": "code",
135+
"execution_count": 15,
136+
"metadata": {},
137+
"outputs": [
138+
{
139+
"name": "stdout",
140+
"output_type": "stream",
141+
"text": [
142+
"/home/angicia/Workspace/PythonML/Basic-exercises-on-Machine-Learning-with-Python\n"
143+
]
144+
}
145+
],
146+
"source": [
147+
"print(os.getcwd())"
148+
]
149+
},
150+
{
151+
"cell_type": "code",
152+
"execution_count": null,
153+
"metadata": {},
154+
"outputs": [],
155+
"source": []
88156
}
89157
],
90158
"metadata": {

0 commit comments

Comments
 (0)