Advertisement
KaySawbridge

Greeting function

Aug 8th, 2020
321
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 0.15 KB | None | 0 0
  1. def greet(name):
  2.     """
  3.    This function greets to
  4.    the person passed in as
  5.    a parameter
  6.    """
  7.     print("Hello, " + name + ". Good morning!")
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement