python学习笔记之009.py

来源:互联网 发布:化学软件初中 编辑:程序博客网 时间:2024/06/04 18:49
#!/usr/bin/env python
# coding=utf-8
# Created Time:    2017-08-08 14:27:18
# Modified Time:   2017-08-08 14:37:18


def sayHello():
    print 'Hello World!' # block belonging to the function


sayHello() # call the function
原创粉丝点击