# syntax # def (): # # docstring # # # function logic def helloworld(): """ __docstring__ goes here accessed via .__docstring__ """ print('hello world!') if '__main__' == __name__: helloworld()