#!/usr/bin/env python
# -*- coding:utf-8 -*-

def func1():
    print('hello world !')

def func2():
    for i in range(3):
        func1()

if __name__ == '__main__':
    func2()
    

 

相关文章:

  • 2020-05-14
  • 2019-11-07
  • 2019-11-10
  • 2018-11-09
  • 2018-11-09
  • 2021-08-07
  • 2021-11-24
猜你喜欢
  • 2022-01-11
  • 2021-05-19
  • 2021-08-07
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-07-31
相关资源
相似解决方案