Guest User

Untitled

a guest
Jan 20th, 2019
53
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.15 KB | None | 0 0
  1. def hello(name): # <----- parametro
  2. hello('Alice') # <----- argumento
  3. if name == 'Alice':
  4. return 'holaaa alice'
  5. print(hello)
Add Comment
Please, Sign In to add comment