摘要: #!/usr/bin/python3 # -*- coding: utf-8 -*- import json data = {'name':'张森','email':'zhangsen@qq.com'} data = json.dumps(data, sort_keys=True, indent=2) data = data.encode('utf-8').decode('unicode_esc... 阅读全文
posted @ 2018-04-23 16:37 三木燕 阅读(1591) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3 # -*- coding: utf-8 -*- test = "username\tmail\tage\nzhangsen\tzhangsen@qq.com\t25" print(test.expandtabs(20)) 阅读全文
posted @ 2018-04-23 16:22 三木燕 阅读(235) 评论(0) 推荐(0) 编辑
摘要: #!/usr/bin/python3 # -*- coding: utf-8 -*- test = "今天吃了吗" test = "_".join(test) print(test) 今_天_吃_了_吗 test = "今天吃了吗" test = " ".join(test) print(test) 今 天 吃 了 吗 阅读全文
posted @ 2018-04-23 16:14 三木燕 阅读(893) 评论(0) 推荐(0) 编辑