Skip to content
View jkomalley's full-sized avatar
🐍
🐍
Block or Report

Block or report jkomalley

Block user

Prevent this user from interacting with your repositories and sending you notifications. Learn more about blocking users.

You must be logged in to block users.

Please don't include any personal information such as legal names or email addresses. Maximum 100 characters, markdown supported. This note will be visible to only you.
Report abuse

Contact GitHub support about this user’s behavior. Learn more about reporting abuse.

Report abuse
jkomalley/README.md
# me.py

class Developer:
  def __init__(self):
    self.name = "Kyle"
    self.pronouns = ["he", "him"]
    self.code = ["Python", "C", "C++"]
    self.degree = "B.S. Computer Science"
    self.almaMater = "University of Pittsburgh"
    self.numCats = 2

  def greet(self):
    print(self)

  def __str__(self):
    out = f"My name is {self.name}"
    out += f" ({'/'.join(self.pronouns)}).\n"
    out += f"I love writing code in  "
    out += f"{', '.join(self.code[:-1])} and {self.code[-1]}.\n"
    out += f"I earned my {self.degree} degree from the {self.almaMater}.\n"
    out += f"I have {self.numCats} cats that love sitting on my keyboAAAAAAAASAQWQSQQQ"
    return out

me = Developer()
me.greet()
user@github $ python me.py
My name is Kyle (he/him).
I love writing code in  Python, C and C++.
I earned my B.S. Computer Science degree from the University of Pittsburgh.
I have 2 cats that love sitting on my keyboAAAAAAAASAQWQSQQQ

Pinned Loading

  1. convbase convbase Public

    Base conversion command line utility.

    Python

  2. trie trie Public

    My implementation of the trie data structure.

    C

  3. weather weather Public

    A Weather app.

    Python