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