Skip to content

Commit fa7d8e1

Browse files
committed
Fix bug (str with int)
1 parent df9944f commit fa7d8e1

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Intro to Python (Part 3).ipynb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"metadata": {
33
"name": "",
4-
"signature": "sha256:090bd45764be61922d095874a92e385fb08b14f59b1b8193872697edc2ea412d"
4+
"signature": "sha256:5d30c1bf0ef6ef9e2875c27ac6be4114ed2b22ed413599126aed7462e53be2a6"
55
},
66
"nbformat": 3,
77
"nbformat_minor": 0,
@@ -279,7 +279,7 @@
279279
"cell_type": "code",
280280
"collapsed": false,
281281
"input": [
282-
"print \"We need to make \" + get_cupcake_count(10) + \" cupcakes.\""
282+
"print \"We need to make \" + str(get_cupcake_count(10)) + \" cupcakes.\""
283283
],
284284
"language": "python",
285285
"metadata": {},

0 commit comments

Comments
 (0)