8 lines
116 B
Python
8 lines
116 B
Python
#
|
|
# Skeleton file for the Python "Hello World" exercise.
|
|
#
|
|
|
|
|
|
def hello(name='World'):
|
|
return 'Hello, '+name+'!'
|