From a38165d77895a8f8853cc1b069a7f9a449a63879 Mon Sep 17 00:00:00 2001 From: Eric Douglas Date: Wed, 14 May 2014 21:25:01 -0300 Subject: [PATCH] fix typo ps0.py --- .../archives/UNIT-01/02-core-elements-of-a-program/ps0.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/archives/01-introduction-to-computer-science-and-programming/archives/UNIT-01/02-core-elements-of-a-program/ps0.py b/archives/01-introduction-to-computer-science-and-programming/archives/UNIT-01/02-core-elements-of-a-program/ps0.py index 09b2a9f..445d309 100644 --- a/archives/01-introduction-to-computer-science-and-programming/archives/UNIT-01/02-core-elements-of-a-program/ps0.py +++ b/archives/01-introduction-to-computer-science-and-programming/archives/UNIT-01/02-core-elements-of-a-program/ps0.py @@ -3,6 +3,6 @@ # Time Spent: 3:10 birthday = raw_input('When is your birthday?\n') -lastName = raw_input('What is yout last name?\n') +lastName = raw_input('What is your last name?\n') print lastName + ' ' + birthday