Knowledge organisersData Types and Casting
Select correct data types.
Choosing the right data type matters for correctness and efficiency. Use int for counting, float for measurements, str for text, and bool for yes/no decisions.
int for quantities you count (lives, score)float for measurements (height, price)str for any text or mixed charactersbool for flags and conditionslives = 3 # int — count of lives
height = 1.75 # float — measurement
postcode = "SW1" # str — contains letters
is_admin = False # bool — yes/no flag