Latest web development tutorials

Python включает в себя упражнения 34

Python 100 Li Python 100 Li

Название: Вызов функции практики.

Программа анализа: Нет.

Исходный код:

#!/usr/bin/python
# -*- coding: UTF-8 -*-

def hello_world():
    print 'hello world'

def three_hellos():
    for i in range(3):
        hello_world()
if __name__ == '__main__':
    three_hellos()

В приведенном выше примере выход:

hello world
hello world
hello world

Python 100 Li Python 100 Li