#!/usr/bin/python
# -*- coding: utf-8 -*-
class Uofwashstudent:
def __init__(self):
self.name = "Yunyi(iris) Ding"
self.pronoun = "she/her"
self.role = "student"
self.major = "informatics"
self.language_spoken = ["zh_CN", "en_US"]
def say_hi(self):
print("Thanks for dropping by, hope you find some of my work interesting.")
me = Uofwashstudent()
me.say_hi()
-
How to reach me😊