Skip to content

Instantly share code, notes, and snippets.

View MegaMoonBear's full-sized avatar
:atom:
Learning React from Oct.

MoonBear_Nagano MegaMoonBear

:atom:
Learning React from Oct.
View GitHub Profile
@MegaMoonBear
MegaMoonBear / Shapes_Triangles3Types.py
Created October 31, 2025 14:40
# Shape prep for 3 shapes: Circle, triangle, square - 3 triangle shapes not share beyond side (only equilat.), area, perimeter
# 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