Coder Social home page Coder Social logo

packaging's Introduction

# me.py

class Developer:
  def __init__(self):
    self.name = "Kyle"
    self.pronouns = ["he", "him"]
    self.code = ["Python", "C", "C++", "Rust"]
    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, C++, and Rust.
I earned my B.S. Computer Science degree from the University of Pittsburgh.
I have 2 cats that love sitting on my keyboAAAAAAAASAQWQSQQQ

packaging's People

Contributors

abravalheri avatar brettcannon avatar chrahunt avatar dcermak avatar di avatar dimitripapadopoulos avatar dstufft avatar ffy00 avatar hauntsaninja avatar henryiii avatar hrnciar avatar hroncok avatar hugovk avatar jdufresne avatar joycebrum avatar layday avatar mattip avatar mayeut avatar moyiz avatar mrmino avatar nvie avatar opethe1st avatar pfmoore avatar pradyunsg avatar s-t-e-v-e-n-k avatar sbidoul avatar speclad avatar uranusjr avatar venthur avatar xavfernandez avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.