摘要: def is_hex(word): word= word.lower() for i in range(len(word)): if not( word[i].startswith('0x') or word[i].isdigit() or word[i] in ['a','b','c','d',' 阅读全文
posted @ 2021-01-19 11:20 该显示昵称已被使用了 阅读(502) 评论(0) 推荐(0)
摘要: import platform os_platform = platform.platform() # Windows-10-10.0.18362-SP0 阅读全文
posted @ 2021-01-19 09:41 该显示昵称已被使用了 阅读(697) 评论(0) 推荐(0)
摘要: 以下写法都可以 file = r'C:\config.yaml' file = 'C:\config.yaml' file = 'C:\\config.yaml' file = r'C:\\config.yaml' file = r'C:/config_auto_ui.yaml' file = 'C 阅读全文
posted @ 2021-01-19 09:38 该显示昵称已被使用了 阅读(1920) 评论(0) 推荐(0)