mirror of
https://github.com/9001/copyparty.git
synced 2025-10-23 04:52:21 +00:00
9 lines
106 B
Python
9 lines
106 B
Python
#!/usr/bin/env python
|
|
|
|
import time
|
|
import random
|
|
|
|
v = random.random() * 6
|
|
time.sleep(v)
|
|
print(f"{v:.2f}")
|