11 lines
163 B
Python
11 lines
163 B
Python
|
import os
|
||
|
|
||
|
def current_fileno():
|
||
|
with open(__file__, 'r') as f:
|
||
|
return f.fileno()
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
for i in range(1000):
|
||
|
print(current_fileno())
|
||
|
|