Skip to content

Instantly share code, notes, and snippets.

View myuanz's full-sized avatar

provefar myuanz

View GitHub Profile
@myuanz
myuanz / dict_project.py
Last active June 1, 2020 15:10
Python dict project / Python字典投影
from typing import Union, Dict, Any, Callable
from inspect import isfunction, isclass
class ChangeName:
name = ""
def __init__(self, name):
self.name = name