摘要:
 ```
def bubble(li): tag = 0 for i in range(len(li)-1): for j in range(len(li)-i-1): ... 阅读全文
摘要:
```
import os
import sys
import time import myconfig b = ['123']
a = os.path.abspath(myconfig.__file__)
print(a)
b[-1]=os.path.getmtime(a)
print(b)
while True: a = os.path.abspath(myconfig.__fi... 阅读全文