News

Takes an integer input from the user. Checks whether the number is even or odd using an if-else statement. Displays the result accordingly. if number % 2 == 0: print(str(number) + " is an Even Number" ...
Assignment 2: Control Structures in Python This repository contains solutions to Module 3: Control Structures in Python as part of the Python learning series. Tasks Included Task 1: Check if a Number ...