Advertisement
puggan

TypedDictKeys.py

Jun 29th, 2020
1,494
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.40 KB | None | 0 0
  1. from typing import Literal, TypedDict
  2.  
  3.  
  4. class Td(TypedDict):
  5.     bar: str
  6.     foo: str
  7.  
  8.  
  9. manual_literal = Literal['bar', 'foo']
  10.  
  11. def hello_td_str(key: str, td: Td):
  12.     return 'Hello ' + td[key]
  13.  
  14. def hello_td_manual(key: manual_literal, td: Td):
  15.     return 'Hello ' + td[key]
  16.  
  17.  
  18. my_td = {'bar': 'Bar', 'foo': 'Foo'}
  19.  
  20. print(hello_td_manual('bar', my_td))
  21. print(hello_td_str('foo', my_td))
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement