import random
class MyProfile:
def __init__(self):
self.name = "Nemupy"
self.loves = ["Python", "MYUKKE.", "KAWAII LAB."]
self.repos = ["CuBot", "Janken", "Hello-World"]
def hello(self):
love = random.choice(self.loves)
repo = random.choice(self.repos)
print(f"Hello! I'm {self.name}.")
print(f"I love {love}, and more!")
print(f"Please check https://github.com/Nemupy/{repo}.")
nemupy = MyProfile()
nemupy.hello()
🐍
print("Hello, World!")
- Fukui, Japan
Something went wrong, please refresh the page to try again.
If the problem persists, check the GitHub status page or contact support.
If the problem persists, check the GitHub status page or contact support.