Skip to content

Instantly share code, notes, and snippets.

@Goldziher
Last active November 27, 2021 18:52
Show Gist options
  • Save Goldziher/2d4d870b9fd3f3e7c499fdf303d8a1a9 to your computer and use it in GitHub Desktop.
Save Goldziher/2d4d870b9fd3f3e7c499fdf303d8a1a9 to your computer and use it in GitHub Desktop.
python duck typing example
from typing import Any
def is_duck(value: Any) -> bool:
try:
value.quack()
return True
except (Attribute, ValueError):
return False
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment