7 lines
68 B
Python
7 lines
68 B
Python
def do_nothing(i):
|
|
pass
|
|
|
|
|
|
for i in range(10):
|
|
do_nothing(i)
|