exercism/python/hello-world/hello_world.py

8 lines
116 B
Python
Raw Normal View History

2016-08-13 23:20:14 +00:00
#
# Skeleton file for the Python "Hello World" exercise.
#
2017-08-15 14:55:28 +00:00
def hello(name='World'):
return 'Hello, '+name+'!'