Skip to content

Instantly share code, notes, and snippets.

@raeq
Created May 2, 2021 10:57
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save raeq/2ec9cce114176aff91f6ae74ad816e24 to your computer and use it in GitHub Desktop.
Save raeq/2ec9cce114176aff91f6ae74ad816e24 to your computer and use it in GitHub Desktop.
Square and Circle
import math
class Square:
length: int
def __init__(self, length=0):
self.length = length
class Circle:
radius: int
def __init__(self, radius=0):
self.radius = radius
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment