From f41d2257c173159ed81332615ec672ca4a814046 Mon Sep 17 00:00:00 2001 From: kashishkathuria Date: Tue, 31 Oct 2017 23:31:58 +0530 Subject: [PATCH] Update Day-4.py --- python/Day-4.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/python/Day-4.py b/python/Day-4.py index b5d5d19..4b248cc 100644 --- a/python/Day-4.py +++ b/python/Day-4.py @@ -1,5 +1,5 @@ class Person: - # Define the constructor for Person class + # Define the constructor for Person class. def __init__(self,initialAge): if initialAge >= 0: self.age = initialAge