classEasy Playground

Defines a new class (blueprint for creating objects)

Python Playground
Output
Click "Run" to execute your code

A class bundles data (attributes) and behavior (methods) together. __init__ runs when you create a new instance.

Challenge

Try modifying the code above to explore different behaviors. Can you extend the example to handle a new use case?