Python 34
[Python 100] Python 100
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
[Python 100] Python 100