From 56a18f79cfdd8df12572327cd8810c9101a1ed00 Mon Sep 17 00:00:00 2001 From: lilhandsbgdreams Date: Thu, 16 Feb 2017 02:41:16 -0600 Subject: [python3/en] Fix two "getter" output examples (#2658) --- python3.html.markdown | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/python3.html.markdown b/python3.html.markdown index 596b53e6..b701d558 100644 --- a/python3.html.markdown +++ b/python3.html.markdown @@ -729,8 +729,8 @@ if __name__ == '__main__': # Update the property for this instance i.age = 42 # Get the property - i.say(i.age) # => 42 - j.say(j.age) # => 0 + i.say(i.age) # => "Ian: 42" + j.say(j.age) # => "Joel: 0" # Delete the property del i.age # i.age # => this would raise an AttributeError -- cgit v1.2.3