def create_node( name: str, phone: str, next: dict = None ): return { 'name': name, 'phone': phone, 'next': next }