摘要:
```python # -*-coding:utf8-*- """ 基于字符串数字混合排序的Python脚本 """ def is_number(s): try: float(s) return True except ValueError: pass try: import unicodedata ... 阅读全文
摘要:
```python
#!/usr/bin/python
# -*- coding:utf-8 -*- import time if __name__ == '__main__': print(time.strftime('%Y-%m-%d %H:%M:%S'))
``` 阅读全文