6 lines
96 B
Text
6 lines
96 B
Text
|
|
#!/usr/bin/env python
|
||
|
|
import time
|
||
|
|
|
||
|
|
t1 = int(time.time())
|
||
|
|
while int(time.time()) == t1:
|
||
|
|
pass
|