This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| # Shape prep for 3 shapes: Circle, triangle, square | |
| import math | |
| import random | |
| class Shape: | |
| def area(self): | |
| pass # PASS statement used as a placeholder for future code | |
| def perimeter(self): | |
| pass # PASS statement used as a placeholder for future code |