Advertisement
Guest User

Untitled

a guest
Mar 24th, 2017
80
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.12 KB | None | 0 0
  1. def foo(bar: int) -> None:
  2.     '''This is an example docstring'''
  3.     print(type(bar), bar)
  4.  
  5. foo("Hello, World!")
  6.  
  7. help(foo)
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement