/ Published in: Python
Python 3 'Hello World' using print() function.
Expand |
Embed | Plain Text
# Hello World Application # # Demonstrates print() function def message(name='World!'): print('Hello', name)
You need to login to post a comment.
