YouTip LogoYouTip

Python Exercise Example34

# Python2.x Python Exercise Instance 34 [![Image 3: Python 100 Examples](#) Python 100 Examples](#) **Title:** Practice function calls. **Program Analysis:** Use functions to output the **TUTORIAL** string three times. ## Instance ```python #!/usr/bin/python # -*- coding: UTF-8 -*- def hello_tutorial(): print('TUTORIAL') def hello_tutorials(): for i in range(3): hello_tutorial() if __name__ == ' __main__ ': hello_tutorials() The output of the above instance is: TUTORIAL TUTORIAL TUTORIAL [![Image 4: Python 100 Examples](#) Python 100 Examples](#)
← Python Exercise Example35Python Exercise Example33 β†’