exercism/python/hello-world/hello_world.py
2017-07-20 20:33:09 -04:00

9 lines
187 B
Python

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