Skip to content

Latest commit

 

History

History
9 lines (7 loc) · 129 Bytes

Section #1.md

File metadata and controls

9 lines (7 loc) · 129 Bytes
class Human:
  def speak(self):
        return "Hello i'm a human"


ahmed = Human()
print(ahmed.speak())