Skip to content

Instantly share code, notes, and snippets.

@mikeMoreno
Last active July 5, 2021 03:28
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 mikeMoreno/5cb09fe68682473ee4375c1d3fa098b1 to your computer and use it in GitHub Desktop.
Save mikeMoreno/5cb09fe68682473ee4375c1d3fa098b1 to your computer and use it in GitHub Desktop.
Medium/Python is a Bad Programming Language/Python 1
class Car:
def __init__(self):
self.color = "red"
self.wheels = 4
def get_wheels(self):
return f"{self.wheels}!"
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment