diff --git a/python/lesson4/tutorial.md b/python/lesson4/tutorial.md index 9d69be56..2a3ef490 100644 --- a/python/lesson4/tutorial.md +++ b/python/lesson4/tutorial.md @@ -69,7 +69,7 @@ We can change the function to use a parameter. Let's change it so that it allows the user to specify the name they want to print: >>> def print_name(name): - ... print "My name is " + name + ... print("My name is " + name) ... >>> print_name("Lisa") My name is Lisa