Python 练习实例34原创
金蝶云社区-爱孤独又爱你
爱孤独又爱你
16人赞赏了该文章 257次浏览 未经作者许可,禁止转载编辑于2022年12月27日 00:13:16

题目:练习函数调用。

程序分析:使用函数,输出三次 RUNOOB 字符串。

实例

#!/usr/bin/python

# -*- coding: UTF-8 -*- 


def hello_runoob():

    print ('RUNOOB') 


def hello_runoobs():

    for i in range(3):

        hello_runoob()


if __name__ == '__main__':

    hello_runoobs()


以上实例输出结果为:

RUNOOB
RUNOOB
RUNOOB



赞 16