Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

Commitc7943bd

Browse files
committed
fixing typos
1 parent2be37d5 commitc7943bd

10 files changed

+1528
-310
lines changed

‎Module1/.ipynb_checkpoints/4_unix_basics-checkpoint.ipynb

Lines changed: 241 additions & 58 deletions
Large diffs are not rendered by default.

‎Module1/.ipynb_checkpoints/5_Running_Python-checkpoint.ipynb

Lines changed: 23 additions & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -2,33 +2,34 @@
22
"cells": [
33
{
44
"cell_type":"markdown",
5-
"metadata": {},
5+
"metadata": {
6+
"deletable":true,
7+
"editable":true
8+
},
69
"source": [
710
"# Running Python"
811
]
912
},
1013
{
1114
"cell_type":"markdown",
12-
"metadata": {},
15+
"metadata": {
16+
"deletable":true,
17+
"editable":true
18+
},
1319
"source": [
1420
"## Command Line Interactive Python\n",
1521
"If you just want to run a few commands without creating a script, you can run python directly from the command line. Type the following in your browser (lines beginnning with a hash are used only to make comments and are not run).\n",
1622
"\n",
1723
"From the terminal prompt or git prompt:\n",
18-
"\n",
19-
" # start python\n",
20-
" python\n",
21-
"\n",
22-
" # make python do print something\n",
23-
" print(\"hello world!\")\n",
24-
"\n",
25-
" # exit python (you can also hit ctrl + D\n",
26-
" quit()"
24+
"![run_python](./pics/run_python.jpg)"
2725
]
2826
},
2927
{
3028
"cell_type":"markdown",
31-
"metadata": {},
29+
"metadata": {
30+
"deletable":true,
31+
"editable":true
32+
},
3233
"source": [
3334
"## Basic Python Script Format"
3435
]
@@ -37,7 +38,9 @@
3738
"cell_type":"code",
3839
"execution_count":3,
3940
"metadata": {
40-
"collapsed":false
41+
"collapsed":false,
42+
"deletable":true,
43+
"editable":true
4144
},
4245
"outputs": [
4346
{
@@ -73,7 +76,10 @@
7376
},
7477
{
7578
"cell_type":"markdown",
76-
"metadata": {},
79+
"metadata": {
80+
"deletable":true,
81+
"editable":true
82+
},
7783
"source": [
7884
"## Running a script from the command Line"
7985
]
@@ -82,7 +88,9 @@
8288
"cell_type":"code",
8389
"execution_count":null,
8490
"metadata": {
85-
"collapsed":true
91+
"collapsed":true,
92+
"deletable":true,
93+
"editable":true
8694
},
8795
"outputs": [],
8896
"source": [

‎Module1/3_installing_stuff.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ Try to follow along, but if you get stuck, don't worry, we'll have time during t
66

77
##Setting up a Unix Environment
88
###Terminal in Mac
9-
BecauseOSx is based off of unix, accessing the command line from a mac is super easy; just hit command + spacebar and search for "terminal".
9+
OSx is based off of unix, so accessing the command line from a mac is super easy; just hit command + spacebar and search for "terminal".
1010

1111
###GitBash in Windows
1212
Since Windows is based off of DOS instead of UNIX, we'll use Git Bash to keep things from getting too complicated.

0 commit comments

Comments
 (0)

[8]ページ先頭

©2009-2025 Movatter.jp