Skip to content

Commit 40cd183

Browse files
small changes
1 parent cdaedce commit 40cd183

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Intro_To_Python.ipynb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -47,15 +47,15 @@
4747
{
4848
"metadata": {},
4949
"cell_type": "markdown",
50-
"source": "Wonderful! You have just written your first Python script. Well, I actually wrote it. Let's take the magnifying glass to this code. The `print` function is a built-in function in Python that takes in a string (a sequence of characters) and outputs it to the console. The string is enclosed in quotation marks, which tells Python that it is a string and not a variable or some other type of data. Now, let's try printing something of your choice. Run the following code cell, replacing the text in quotation marks with some text of your choosing.",
50+
"source": "Wonderful! You have just written your first Python script. Well, I actually wrote it. Let's take the magnifying glass to this code. The `print` function is a built-in function in Python that takes in a string (a sequence of characters) and outputs it to the console. The string is enclosed in quotation marks, which tells Python that it is a string and not a variable or some other type of data. Now, let's try printing something of your choice. try printing your name below:",
5151
"id": "f97b19198e4677fd"
5252
},
5353
{
5454
"metadata": {},
5555
"cell_type": "code",
5656
"outputs": [],
5757
"execution_count": null,
58-
"source": "print(\"I'm lazy and can't change this small block of text!\")",
58+
"source": "# write a print statement here and run it",
5959
"id": "1f40c56b228dc899"
6060
},
6161
{
@@ -410,7 +410,7 @@
410410
}
411411
},
412412
"cell_type": "code",
413-
"source": "",
413+
"source": "# write your code here",
414414
"id": "cbe0fa25649c85c3",
415415
"outputs": [
416416
{

0 commit comments

Comments
 (0)