diff --git a/Python/01. Introduction/002. Python If-Else.py b/Python/01. Introduction/002. Python If-Else.py index da03804..9a7e3f1 100644 --- a/Python/01. Introduction/002. Python If-Else.py +++ b/Python/01. Introduction/002. Python If-Else.py @@ -2,11 +2,9 @@ # Score: 10 -def wierd(n): - if n % 2 == 1 or 6 <= n <= 20: - print('Weird') +def weird_or_not(n): + if n % 2 == 1 or (6 <= n <= 20): + print("Not Weird") else: - print('Not Weird') - - -wierd(int(input())) + print("Weird) +weird_or_not(n)