Day 3: Intro to Conditional Statements
ObjectiveIn this challenge, we learn about conditional statementsTaskGiven an integer, , perform the following conditional actions:If is odd, print WeirdIf is even and in the inclusive range of to , print Not WeirdIf is even and in the inclusive range of to , print WeirdIf is even and greater than , print Not Weirdimport mathimport osimport randomimport reimport sysif __name__ == '__main__': ..