Integers, Floats, Strings, Booleans & Casting.
(a) 9
(b) Truncates (removes) the decimal part; does not round up.
str(10 + 5)int("12") + 5float(int(4.8))isValid True even if user types "False"?
(a) Non-empty strings evaluate to True in Python. It checks presence of text, not meaning.
(b) if userInput == "False": isValid = False
num = random(65, 90) letter = CHR(num) print(letter)
(a) Line 03
(b) print("You are " + str(ageMonths) + " months old.")
102 (String concatenation)
Removes fractional part / Loss of precision (e.g. 9.9 becomes 9).