Coder Social home page Coder Social logo

Hi there πŸ‘‹

#!/usr/bin/python
# -*- coding: utf-8 -*-

from typing import List

class Profile:

    def __init__(self, name: str, role: str, languages: List[str], hobbies: List[str], skills: List[str], learning: List[str]):
        self.name = name
        self.role = role
        self.languages = languages
        self.hobbies = hobbies
        self.skills = skills
        self.learning = self.skills + learning 

    def say_hi(self):
        print(f"πŸ‘‹ Hi there, my name is {self.name} and I am a {self.role}.")
        print(f"πŸ’¬ I speak {', '.join(self.languages)} and my hobbies include {', '.join(self.hobbies)}.")
        print(f"πŸ§‘πŸ»β€πŸ’» Skills {', '.join(self.skills)}.")
        print(f"πŸ“š Currently learning: {', '.join(self.learning)} 🀩.")
        print("πŸ˜„ Thanks for dropping by, hope we will build something that makes the world better πŸš€.")

me = Profile(
    name="Lewis Liu",
    role="Software Engineer",
    languages=["Chinese", "English"],
    hobbies=["CodingπŸ§‘β€πŸ’»", "Hip-hop🎡", "BasketballπŸ€"],
    skills=["Python", "React", "Machine Learning", "Linux"],
    learning=["Rust", "Golang", "Penetration Testing"]
)

me.say_hi()

lewislovelock's Projects

aider icon aider

aider is AI pair programming in your terminal

bioinfoagent icon bioinfoagent

Multiple agents collaborating to perform bioinformatics analyses.

github-snake icon github-snake

🟩⬜ Generates a snake game from a github user contributions graph and output a screen capture as animated svg or gif

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.