exercism/python/hello-world/hello_world.py
anthony.cicchetti 5f9cd49d7a initial commit
2017-04-25 15:51:48 -04:00

9 lines
178 B
Python

#
# Skeleton file for the Python "Hello World" exercise.
#
def hello(name="World"):
if name == None or name == '':
name = "World"
return "Hello, " + name + "!"