This helps you find errors quickly. Python handles math easily: - + Addition - - Subtraction - * Multiplication - / Division (always results in a float) - // Floor division (removes the decimal) - % ...
Now compare that with: age = 25 This is not text anymore. It is a number without a decimal point, so Python classifies it as an integer, shortened to int. The distinction between strings and integers ...