From 069c05248e2232ef14f48e3d896af4457944d353 Mon Sep 17 00:00:00 2001 From: Mehul Y Khandhadiya <53016215+mehulk-5245@users.noreply.github.com> Date: Thu, 1 Oct 2020 14:02:09 +0530 Subject: [PATCH] Update condition_if_simple.py --- condition_if_simple.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/condition_if_simple.py b/condition_if_simple.py index de2085e..7ef7c17 100644 --- a/condition_if_simple.py +++ b/condition_if_simple.py @@ -1,10 +1,10 @@ def main(): - Age=input("enter your Age:") - if(int(Age)>18): + Age = int(input("Enter your Age:")) + if(Age > 18): print("welcome") -if __name__ == '__main__':main() \ No newline at end of file +if __name__ == '__main__':main()