Computer Programming For Beginners Fundamentals Of Programming Terms And Concepts
- Floating-point (float/double): Numbers with decimal points, e.g., 3.14, -0.001 - Strings (str): Sequences of characters, e.g., "Hello", "1234" - Booleans (bool): True or False values Example: ```python age = 25 Integer name = "Alice" String temperature = 36.6 Float