You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
338 B
Python
23 lines
338 B
Python
12 months ago
|
#!/usr/bin/env python3
|
||
|
# countsync.py
|
||
|
|
||
|
import time
|
||
|
|
||
|
|
||
|
def count():
|
||
|
print("One")
|
||
|
time.sleep(1)
|
||
|
print("Two")
|
||
|
|
||
|
|
||
|
def main():
|
||
|
for _ in range(3):
|
||
|
count()
|
||
|
|
||
|
|
||
|
if __name__ == "__main__":
|
||
|
s = time.perf_counter()
|
||
|
main()
|
||
|
elapsed = time.perf_counter() - s
|
||
|
print(f"{__file__} executed in {elapsed:0.2f} seconds.")
|