Tuesday, July 22, 2025

WTP in python - Age Group Classifier

Age Group Classifier

Input a person's age and classify them as:


Child (0–12)

Teen (13–19)

Adult (20–59)

Senior (60+)



#take the input from user


age=float(input("Please enter you Age:  "))


if(age>0 and age<=12):

    print(f"{age} , Child")

elif(age>=13 and age<=19):

    print(f"{age} ,Teen ")

elif(age>=20 and age<=59):

    print(f"{age} , Adult")

elif(age>=60):

    print(f"{age} , Senior ")

else:

    print(f"{age} , Invaild Age ")

WTP in python - check the number is Even or Odd

 

Write a program that takes an integer input and checks whether it is even or odd.


num=int(input("Please Enter the Number : "))


num_check = num % 2


if (num_check == 0):

    print(f"{num} even number")

else:

    print("odd number ")

WTP in python - check Positive, Negative, or Zero

 

Ask the user to enter a number and print whether it is positive, negative, or zero.


# Positive, Negative, or Zero Checker

#take the input from user 

number=float(input("Please enter the number : "))


# check the condition 

if (number>0):

    print(f" {number} is postive")

elif(number<0):

    print(f"{number} is negative")

else:

    print(f"{number} is zero")

Friday, July 18, 2025

How to print in python ?

print ("Hello world ")