devQuest - 28/05/2025 18:12
print("hello")
Write a program that takes three side lengths as input and determines whether they form a valid triangle. If they do, determine if the triangle is equilateral, isosceles, or scalene.
side1 = float(input("Side 1: "))
side2 = float(input("Side 2: "))
side3 = float(input("Side 3: "))
Write a program that takes character inputs from the user until an empty input is given. For each character, determine if it's lowercase, uppercase, a number, or a symbol, and print an appropriate message. After the loop terminates, print a goodbye message.
# Request once before entering the loop
char = input('Enter a character (ENTER to exit): ')
Write a program that continuously prompts the user to enter a character. The program should then determine if the character is lowercase, uppercase, a number, or a symbol, and print an appropriate message. The program should exit when the user presses ENTER without entering a character.
# Request once before entering the loop
char = input('Enter a character (ENTER to exit): ')