Skip to content

Commit efada7d

Browse files
Merge pull request #369 from vwimmer/patch-2
Little parenthesis update
2 parents 6b62b14 + 427d342 commit efada7d

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/lesson4/tutorial.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,7 @@ We can change the function to use a parameter. Let's change it so that it
6969
allows the user to specify the name they want to print:
7070

7171
>>> def print_name(name):
72-
... print "My name is " + name
72+
... print("My name is " + name)
7373
...
7474
>>> print_name("Lisa")
7575
My name is Lisa

0 commit comments

Comments
 (0)