From 5d4eaae2603e36c4c6235844a89979ac6ecab85f Mon Sep 17 00:00:00 2001 From: Samuel-06M Date: Wed, 20 Mar 2024 23:36:24 +0300 Subject: [PATCH] did some hackathon level 1 assignment --- conditions.py | 13 ------------- 1 file changed, 13 deletions(-) diff --git a/conditions.py b/conditions.py index 8ff3d8e..f72b607 100644 --- a/conditions.py +++ b/conditions.py @@ -1,16 +1,3 @@ -# Python Conditional Statements -#example is https://plpacademy.powerlearnproject.org/course-module/62fbec9d28ac4762bc524f92/week/62fe1efd28ac4762bc524f9c/lesson/62fe1fbd28ac4762bc524f9f - - - -# Create a Python program that: - - -# - Prompts a user to enter their age. -# - Uses a conditional statement to check if the age is greater than or equal to 18. -# - Prints "You are eligible to vote" if true, otherwise "You are not eligible to vote." - - age = int(input("Enter your age: "))