Guest User

Untitled

a guest
Jan 9th, 2018
82
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.13 KB | None | 0 0
  1. def myfunc(a: int, b: int=0) -> int:
  2. c: int = 10
  3. return a + b + c
  4.  
  5. nome = str("Python")
  6.  
  7. nome: str = "Python"
Add Comment
Please, Sign In to add comment