Integer (int): Whole numbers (e.g., num = 42)
Float (float): Decimal numbers (e.g., pi = 3.14159)
String (str): Text (e.g., greeting = "Hello, World!")
Boolean (bool): Represents True or False (e.g., is_valid = False)
List (list): Ordered collection of items (e.g., fruits = ["apple", "banana", "cherry"])
Tuple (tuple): Ordered, immutable collection of items (e.g., coordinates = (10, 20))