Want to collaborate?

Right now, you can get in touch with me for a few things:
Open Source Contributions
Volunteering
Participating in User Research
+ more
Follow

Nina Hwang

def self_introduction(name, job, city, country):
    return f"""
Hello, I'm {name}. I'm a {job} from {city}, {country}.
    """

def greeting():
    return "Nice to meet you!"

print(self_introduction(
    name="Nina",
    job="back-end developer",
    city="Incheon",
    country="South Korea"
    )
)
print(greeting())
Read more
Loading...