# Create a Texture object with 40% sand, 30% clay, and 30% silt texture = Texture(40, 30, 30) print(texture) ```
This implementation defines a Texture class with properties for sand, clay, and silt percentages. The `__init__` method initializes the object with the specified percentages. The `__str__` method returns a string representation of the object. Finally, a Texture object is created with the desired percentages and printed to the console.