Advertisement
Guest User

Untitled

a guest
Feb 20th, 2019
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. myvar = 10 # type: int
  2. myvar = math.inf # <-- raises a typing error because math.inf is a float
  3.  
  4. myvar = 10 # type: Union[int, float]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement