Curriculum
Write a program that:
Example Code:
birth_year = input("Enter your birth year: ")
age = 2025 - int(birth_year)
print(f"You are {age} years old.")
Example Interaction:
Enter your birth year: 1990
You are 35 years old.
Write a program that:
Example Code:
temp_f = input("Enter temperature in Fahrenheit: ")
temp_c = (float(temp_f) - 32) * 5/9
print(f"The temperature in Celsius is: {temp_c:.2f}")
Example Interaction:
Enter temperature in Fahrenheit: 98.6
The temperature in Celsius is: 37.00
Write a program that:
bool()
.Example Code:
value = input("Enter a value: ")
converted_value = bool(value)
print(f"The boolean equivalent of '{value}' is {converted_value}.")
Not a member yet? Register now
Are you a member? Login now