Advertisement
Guest User

Untitled

a guest
Jan 16th, 2018
86
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.23 KB | None | 0 0
  1.  
  2.  
  3. def function_name(argument1, argument2: str) -> str:
  4. """this is function body, this code will be executed when someone will call `function_name(1, "two")`"""
  5. print("{}: {}".format(argument1, argument2)
  6. return argument2
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement